Click here to Skip to main content
15,891,567 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
AnswerRe: Want to Hide a span element using class selector using CSS Pin
indian14327-Jul-18 11:09
indian14327-Jul-18 11:09 
Ok no problem, I got it resolved in the following way:
function dataBoundAdmin(e)
{
    var data = this.dataSource.view();<br />
    for (var i = 0; i < data.length; i++)
    {
        var uid = data[i].uid;
        var row = this.table.find("tr[data-uid='" + uid + "']");

        row.find(".k-i-close").hide();

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

Just say if somebody needs similar help.

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
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 
GeneralRe: Where should I post my Angular 6 questions? Pin
jkirkerx30-Jul-18 13:18
professionaljkirkerx30-Jul-18 13:18 

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.