Click here to Skip to main content
15,888,351 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: WCF service with sql server stored procedure for android Pin
Mycroft Holmes6-Aug-18 14:39
professionalMycroft Holmes6-Aug-18 14:39 
QuestionHTML2PDF: does it support HTML OL tag type? Pin
Member 137012511-Aug-18 0:38
Member 137012511-Aug-18 0:38 
AnswerRe: HTML2PDF: does it support HTML OL tag type? Pin
Vincent Maverick Durano1-Aug-18 8:16
professionalVincent Maverick Durano1-Aug-18 8:16 
GeneralRe: HTML2PDF: does it support HTML OL tag type? Pin
Member 137012511-Aug-18 20:02
Member 137012511-Aug-18 20:02 
GeneralRe: HTML2PDF: does it support HTML OL tag type? Pin
Vincent Maverick Durano2-Aug-18 4:52
professionalVincent Maverick Durano2-Aug-18 4:52 
QuestionOpen ChildPage's Modal on Parent Page Pin
kktt28-Jul-18 7:55
kktt28-Jul-18 7:55 
AnswerRe: Open ChildPage's Modal on Parent Page Pin
Vincent Maverick Durano30-Jul-18 11:17
professionalVincent Maverick Durano30-Jul-18 11:17 
QuestionWant to Hide a span element using class selector using CSS Pin
indian14327-Jul-18 9:10
indian14327-Jul-18 9:10 
Hi All,

I want to hide span which has class k-icon k-i-close but don't want to hide spam with class: k-icon k-i-edit,
<td role="gridcell">
    <a role="button" class="k-button k-button-icontext k-grid-edit" href="#">
        
    Edit
    </a>
    <a role="button" class="k-button k-button-icontext k-grid-delete" href="#">
        
    Delete
    </a>
</td>
I have tried in the below way:
.k-button.k-button-icontext .k-icon, .k-button.k-button-icontext .k-image
{
   visibility:hidden;
}
But it is hiding images of all buttons, but I want to only hide delete buttons image using css class. I have tried in the below way also but its not hiding the delete buttons icon, I just want to hide the delete buttons icon.
function dataBoundAdmin(e)
{
    var data = this.dataSource.view();    
    for (var i = 0; i < data.length; i++)
    {
        var uid = data[i].uid;
        var row = this.table.find("tr[data-uid='" + uid + "']");

        if (data[i].IsValid)
        {<br />
            row.find(".k-grid-delete").contents().last()[0].textContent = 'Disable';
        }
        else
        {<br />
            row.find(".k-grid-delete").contents().last()[0].textContent = 'Enable';
        }
    }

    $(".k-icon k-i-close").hide();
}

Any help is going to be very helpful, thanks in advance.

Thanks,

Abdul Aleem

"There is already enough hatred in the world lets spread love, compassion and affection."
AnswerRe: Want to Hide a span element using class selector using CSS Pin
indian14327-Jul-18 11:09
indian14327-Jul-18 11:09 
AnswerRe: Want to Hide a span element using class selector using CSS Pin
Richard Deeming30-Jul-18 11:20
mveRichard Deeming30-Jul-18 11:20 
QuestionCan we have only one code behind page for two aspx pages in Asp.net? Pin
Member 1370125127-Jul-18 2:22
Member 1370125127-Jul-18 2:22 
AnswerRe: Can we have only one code behind page for two aspx pages in Asp.net? Pin
dan!sh 27-Jul-18 2:52
professional dan!sh 27-Jul-18 2:52 
GeneralRe: Can we have only one code behind page for two aspx pages in Asp.net? Pin
Member 1370125129-Jul-18 22:53
Member 1370125129-Jul-18 22:53 
AnswerRe: Can we have only one code behind page for two aspx pages in Asp.net? Pin
Vincent Maverick Durano30-Jul-18 11:44
professionalVincent Maverick Durano30-Jul-18 11:44 
AnswerRe: Can we have only one code behind page for two aspx pages in Asp.net? Pin
DerekT-P31-Jul-18 5:52
professionalDerekT-P31-Jul-18 5:52 
GeneralRe: Can we have only one code behind page for two aspx pages in Asp.net? Pin
Member 137012511-Aug-18 0:21
Member 137012511-Aug-18 0:21 
GeneralRe: Can we have only one code behind page for two aspx pages in Asp.net? Pin
DerekT-P1-Aug-18 4:38
professionalDerekT-P1-Aug-18 4:38 
Question'Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' Pin
Member 35932626-Jul-18 13:25
Member 35932626-Jul-18 13:25 
AnswerRe: 'Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' Pin
Richard Deeming27-Jul-18 0:48
mveRichard Deeming27-Jul-18 0:48 
AnswerRe: 'Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' Pin
jkirkerx30-Jul-18 13:23
professionaljkirkerx30-Jul-18 13:23 
Questionasp:CalendarExtender position problem Pin
harish kashyap0125-Jul-18 19:23
harish kashyap0125-Jul-18 19:23 
QuestionAn exception of type 'System.ArgumentNullException' occurred in System.Web.Mvc.dll but was not handled in user code Pin
indian14325-Jul-18 14:21
indian14325-Jul-18 14:21 
AnswerRe: An exception of type 'System.ArgumentNullException' occurred in System.Web.Mvc.dll but was not handled in user code Pin
Richard Deeming26-Jul-18 1:45
mveRichard Deeming26-Jul-18 1:45 
QuestionWhere should I post my Angular 6 questions? Pin
jkirkerx23-Jul-18 7:01
professionaljkirkerx23-Jul-18 7:01 
AnswerRe: Where should I post my Angular 6 questions? Pin
Vincent Maverick Durano30-Jul-18 11:53
professionalVincent Maverick Durano30-Jul-18 11:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.