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

ASP.NET

 
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 
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 
If you want to hide .k-i-close but not .k-i-edit, then you need a rule that targets .k-i-close:
CSS
.k-button.k-button-icontext .k-i-close
{
   visibility:hidden;
}

If you want to do it using jQuery, you'll need a valid selector. Your example is looking for an element called <k-i-close> which is a descendant of an element with class="k-icon" - that doesn't match your markup. Try:
JavaScript
$(".k-icon.k-i-close").hide();
Class Selector (“.class”) | jQuery API Documentation[^]



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

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 
GeneralRe: Where should I post my Angular 6 questions? Pin
Vincent Maverick Durano31-Jul-18 4:01
professionalVincent Maverick Durano31-Jul-18 4:01 

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.