ASP.NET controls and Bootstrap styling Alex Kartavov / Mon, Apr 21, 2014 ASP.NET application styling For quite some time already Infragistics ASP.NET controls have been providing robust and mature CSS styling infrastructure. To look back a bit, it has been almost 7 years...
WebHierarchicalDataGrid - get selected rows on the Server Alex Kartavov / Fri, Oct 29, 2010 This sample shows how to get all selected rows in a WebHierarchicalDataGrid on the server using recursion: protected void Page_Load( object sender, EventArgs e) { this .WebHierarchicalDataGrid1...
WebHierarchicalDataGrid - get selected rows on Client Alex Kartavov / Fri, Oct 29, 2010 In this small sample it is shown how to get selected rows in a WebHierarchicalDataGrid using recursion: < script type ="text/javascript"> function AddLine(gridView) { var events = document...
WebHTMLEditor: How to add toolbar button which inserts object at caret Alex Kartavov / Wed, Aug 25, 2010 The WebHtmlEditor allows to add various custom items to toolbar. In case a toolbar button it is the ToolbarButtonType.Custom. That new item can be added at visual design time within Toolbar.Items property...
How to process keyup event in WebHtmlEditor Alex Kartavov / Wed, Aug 25, 2010 ClientSideEvents of WebHtmlEditor do not have KeyUp event. If application needs to process that event, then it may use following codes. They contain some internal objects methods and mimic internal logic...
WebHTMLEditor: How to build toolbar button with custom dialog Alex Kartavov / Wed, Aug 25, 2010 In order to add a toolbar button which shows custom dialog, the ToolbarDialogButton object with type Custom should be added to the Toolbar of WebHtmlEditor. It can be done at visual design time using...
How to add custom drop-down button to toolbar of WebHtmlEditor Alex Kartavov / Wed, Aug 25, 2010 In order to add another ToolbarDropDown to WebHtmlEditor, the Type="Custom" should be used. The toolbar items expose property Key and if that property is set, then action on client is defined not by Type...
How add custom button which resets styles of selected text/objects in WebHtmlEditor Alex Kartavov / Wed, Aug 25, 2010 The WebHtmlEditor allows to add custom items to toolbar and process their events on client. WebHtmlEditor on client has a shortcut method _format which wraps execCommand method of document. Application...
WebHTMLEditor: How to trigger actions for WebHtmlEditor from javascript Alex Kartavov / Wed, Aug 25, 2010 Most actions of WebHtmlEditor are wrappers for document.execCommand (action, params). The wrapper function for that action has name _format . It was intended for internal usage, though, application may...
WebDataGrid CSS styling guide Alex Kartavov / Wed, Aug 25, 2010 Styling WebDataGrid 1. Css Classes applied from control level 1. CssClass – applied to the grid’s frame. 2. HeaderCaptionCssClass – applied to the header caption of every column. 3. ItemCssClass...