Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
161 views
I have the latest version of the rad grid and have it bound to the EntityDataSource control.  I have a field that I need to hide in all modes.  My trouble is that in insert mode because it is hidden my code to set the default value in the ItemCommand event is not working.  The dictionary is getting populated correctly however when I insert I am getting a foreign key contraint error due to the fact that the hidden field is not getting populated.  Is there a way around this?  I can even leave the field on the screen in edit mode as long as I can make it read only.  When I set the readonly property, the field was not visible but again the value I need was not set.

<

 

telerik:RadGrid runat="server" ID="RadGrid2" AllowPaging="True"

 

 

AllowSorting="True" Width="97%" DataSourceID="EntityDataSource1" AllowAutomaticInserts="True"

 

 

AllowAutomaticUpdates="True" AllowAutomaticDeletes="False" ShowStatusBar="True"

 

 

GridLines="None" AutoGenerateEditColumn="True"

 

 

AutoGenerateColumns="False" OnItemCommand="RadGrid2_ItemCommand">

 

 

<PagerStyle Mode="NumericPages" AlwaysVisible="true" />

 

 

<MasterTableView Width="100%" CommandItemDisplay="Top"

 

 

DataSourceID="EntityDataSource1"

 

 

DataKeyNames="VendorCrewId">

 

 

<Columns>

 

 

<telerik:GridBoundColumn DataField="FirstName" HeaderText="FirstName"

 

 

SortExpression="FirstName" UniqueName="FirstName">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="LastName" HeaderText="LastName" SortExpression="LastName"

 

 

UniqueName="LastName">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="Bio" HeaderText="Bio"

 

 

SortExpression="Bio" UniqueName="Bio" ItemStyle-Width="300px" ItemStyle-HorizontalAlign="NotSet">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridCheckBoxColumn DataField="IsActive" DataType="System.Boolean"

 

 

HeaderText="IsActive" SortExpression="IsActive" UniqueName="IsActive">

 

 

</telerik:GridCheckBoxColumn>

 

 

<telerik:GridBinaryImageColumn DataField="Image" HeaderText="Image" UniqueName="Upload" ImageAlign="NotSet"

 

 

ImageHeight="80px" ImageWidth="80px" ResizeMode="Fit"

 

 

DataAlternateTextFormatString="Image of {0}">

 

 

<HeaderStyle Width="10%" />

 

 

</telerik:GridBinaryImageColumn>

 

 

<telerik:GridBoundColumn DataField="VendorCrewId" DataType="System.Int32"

 

 

HeaderText="VendorCrewId" ReadOnly="True" Visible="False" SortExpression="VendorCrewId"

 

 

UniqueName="VendorCrewId">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="CompanyEntities.CompanyEntityId"

 

 

DataType="System.Int32" HeaderText="Vendor Id"

 

 

SortExpression="CompanyEntities.CompanyEntityId"

 

 

Visible="False">

 

 

</telerik:GridBoundColumn>

 

 

</Columns>

 

 

<EditFormSettings EditFormType="AutoGenerated">

 

 

<EditColumn ButtonType="ImageButton" />

 

 

</EditFormSettings>

 

 

</MasterTableView>

 

 

</telerik:RadGrid>

 



 

protected void RadGrid2_ItemCommand(object source, GridCommandEventArgs e)

 

{

 

if (e.CommandName == RadGrid.InitInsertCommandName) //"Add new" button clicked

 

{

e.Canceled =

true;

 

 

//Prepare an IDictionary with the predefined values

 

System.Collections.Specialized.

ListDictionary newValues = new System.Collections.Specialized.ListDictionary();

 

newValues[

"CompanyEntities.CompanyEntityId"] = Page.Request.QueryString["1"];

 

newValues[

"IsActive"] = true;

 

 

//Insert the item and rebind

 

e.Item.OwnerTableView.InsertItem(newValues);

}

}

Tsvetoslav
Telerik team
 answered on 13 Nov 2009
1 answer
116 views
Hello,

i'm using an radtooltipmanager with autotooltipfy=true to replace classic browser tooltip by radtooltip. It works fine except on an radgrid with grouping and sorting activated. The sort action is well tooltipified but not the grouping one.

With the following code for example, the link in the th is "overrided" by the th title.
<table class="mytable"
        <thead> 
            <tr> 
                <th title="TH TITLE" style="text-align: left; cursor: move;" scope="col" style="height: 30px;"
                    <title="INNER LINK TITLE">test</a><a title="yyy">(2)</a> 
                </th> 
            </tr> 
        </thead> 
        <tbody> 
            <tr> 
                <td title="TD TITLE"
                    xxx 
                </td> 
            </tr> 
        </tbody> 
    </table> 

Do you have a solution for that case?


Svetlina Anati
Telerik team
 answered on 13 Nov 2009
1 answer
90 views
Hello,
I have a ComboBox with over 3,000 records which is bound to a generic list.  When the RequiredFieldValidator is used the page takes a long time to load when I remove the validator the page loads quickly.  Any way around this?  Why is this happening?
Thanks,
Dwayne
Veselin Vasilev
Telerik team
 answered on 13 Nov 2009
2 answers
102 views
Hi all,

I wan't to do the filtering on my radgrid manually, but do it by using the radgrid filtering controls. I grab the filter command in the OnItemCommand event, and doing afterwards the filtering on my datasource, but my radgrid also still sort on the datasource.

How can I set the radgrid not to do the sorting automatically. I believe that I have done something similar earlier by setting the MasterTableView.FilterExpressions = "", but it doesn't seems to work now (or at least I don't know where to set it, have tried in OnPreRender and OnNeedDataSource). I also found some forum threads telling that setting the EnableLinqExpressions to false should help, but seems not to help either.

What should I do?

EDIT: I'm using Telerik.Web.UI 2009.3.1103.35, maybe a bug in 2009 Q3?
Ahrensberg
Top achievements
Rank 1
 answered on 13 Nov 2009
3 answers
498 views
Rad Grid: Disable activity like insert, edit, update delete when a row is in edit mode.

Following are the scenarios i would like to describe for which the code errors out:
1) A newly added row is in edit mode. Now when the grid generated CommandItem for adding a new row is clicked, the page errors out.
Here the user shouldn't have been able to click the add new row link at all. This can be achieved by setting the display of the commandItem. Still the other permutation and combination exists where
2) Add new row link is clicked and a previously existing row is now clicked for edit. Here two rows are in edit mode. One is for adding a new row and other for editing a row. Now if we click on Insert button the page errors out. Here the user shouldn't have been able to click the edit button since already a row is in Insert mode.

Concluding, is there any way that we can control the activity for the links on Insert, Update, Edit where they cannot be clicked if any one activity is currently in progress?

KS
Yavor
Telerik team
 answered on 13 Nov 2009
1 answer
91 views

hello , I am getting exception,

 

"Parameter is not valid."

 

Description: An unhandled exception occurred during closing the main form of MDI.

 

Exception Details: System.ArgumentException: Parameter is not valid.

 

Stack Trace:

 

" at System.Drawing.Drawing2D.Matrix.Clone()\r\n   at Telerik.WinControls.RadElement.get_TotalTransformationMatrix()\r\n   at Telerik.WinControls.RadElement.get_ControlBoundingRectangle()\r\n   at Telerik.WinControls.RadControl.InvalidateElement(RadElement element)\r\n   at Telerik.WinControls.RadElement.PerformInvalidateElement(RadElement element)\r\n   at Telerik.WinControls.RadElement.OnDisplayPropertyChanged(RadPropertyChangedEventArgs e)\r\n   at Telerik.WinControls.RadElement.OnPropertyChanged(RadPropertyChangedEventArgs e)\r\n   at Telerik.WinControls.VisualElement.OnPropertyChanged(RadPropertyChangedEventArgs e)\r\n   at Telerik.WinControls.RadItem.OnPropertyChanged(RadPropertyChangedEventArgs e)\r\n   at Telerik.WinControls.UI.LightVisualElement.OnPropertyChanged(RadPropertyChangedEventArgs e)\r\n   at Telerik.WinControls.UI.GridCellElement.OnPropertyChanged(RadPropertyChangedEventArgs e)\r\n   at Telerik.WinControls.RadObject.UpdateEffectiveValue(RadProperty dp, RadPropertyMetadata metadata, Boolean isCoerceValue, Boolean isOldValueValid, Object oldValue, ValueSource oldValueSource, Boolean oldValueIsDeferred, Boolean coerceWithDeferredReference)\r\n   at Telerik.WinControls.RadObject.NotifyOnPropertyChanged(RadProperty radProperty, Object oldValue)\r\n   at Telerik.WinControls.RadObject.UnregisterStylePropertySetting(IPropertySetting setting, Boolean notifyPropertyChange)\r\n   at Telerik.WinControls.PropertySetting.UnregisterValue(RadElement element)\r\n   at Telerik.WinControls.SelectorBase.Unregister(RadElement element, PropertySettingCollection propertySettings)\r\n   at Telerik.WinControls.StyleSheet.Unapply(RadElement radElement)\r\n   at Telerik.WinControls.RadElement.UnapplyParentStyle(RadElement parent)\r\n   at Telerik.WinControls.RadElement.UnapplyStyle()\r\n   at Telerik.WinControls.RadElement.SetParent(RadElement parent)\r\n   at Telerik.WinControls.RadElement.ChangeCollection(RadElement child, ItemsChangeOperation changeOperation)\r\n   at Telerik.WinControls.RadElementCollection.OnRemoveComplete(Int32 index, Object value)\r\n   at System.Collections.CollectionBase.RemoveAt(Int32 index)\r\n   at Telerik.WinControls.UI.GridRowElement.UpdateColumns(NotifyCollectionChangedEventArgs e)\r\n   at Telerik.WinControls.UI.GridTableElement.UpdateColumns(NotifyCollectionChangedEventArgs e)\r\n   at Telerik.WinControls.UI.GridViewTemplate.UpdateColumns(NotifyCollectionChangedEventArgs e)\r\n   at Telerik.WinControls.UI.GridViewColumnCollection.NotifyListenersCollectionChanged(NotifyCollectionChangedEventArgs e)\r\n   at Telerik.WinControls.Data.ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs e)\r\n   at Telerik.WinControls.UI.GridViewColumnCollection.OnCollectionChanged(NotifyCollectionChangedEventArgs e)\r\n   at Telerik.WinControls.Data.ObservableCollection`1.ClearItems()\r\n   at Telerik.WinControls.Data.ItemObservableCollection`1.ClearItems()\r\n   at Telerik.WinControls.UI.GridViewColumnCollection.ClearItems()\r\n   at Telerik.WinControls.Data.DataAccessComponent.Dispose(Boolean disposing)\r\n   at Telerik.WinControls.UI.GridViewTemplate.Dispose(Boolean disposing)\r\n   at System.ComponentModel.Component.Finalize()"

Thanks

Ved Prakash

Vlad
Telerik team
 answered on 13 Nov 2009
5 answers
366 views
Hi Telerik,

Background: We are using MOSS 2007 and version 4.5.0.0 of RAD Editor.

Problem: When using an enhanced rich text field in a list scenario, we are able to add all styles as normal (i.e. paragraph styles, character styles, table styles, etc) and they show up properly when we are editing, however as soon as we ok the content and are now viewing the list item, the styles do not show up anymore. Then if we go back to editing the item, the styles show up again normally in the edit mode. They only do not show up in the wysiwyg. Any ideas?

We are only having this issue in list scenarios. Embedded page content fields and web parts that use the rad editor work fine.

Attachments: Ive attached the following screenshots:
  • styles showing in edit mode.jpg
  • styles stripped in wysiwyg.jpg
  • column settings.jpg

ListToolsFile.xml
<root>
 
  <modules>
    <module name="RadEditorDiagnostics" scriptFile="./ScriptsFolder/RadEditorDiagnostics.js" dockingZone="Bottom" enabled="true" visible="false" />
    <module name="RadEditorTestModule" scriptFile="./ScriptsFolder/RadEditorTestModule.js" dockingZone="Bottom" enabled="true" visible="false" />
    <module name="RadEditorStatistics" dockingZone="Bottom" enabled="true" visible="true" />
    <module name="RadEditorDomInspector" dockingZone="Module" enabled="true" visible="false" />
    <module name="RadEditorNodeInspector" dockingZone="Module" enabled="true" visible="false" dockable="false" />
    <module name="RadEditorHtmlInspector" dockingZone="Module" enabled="true" visible="false" />
    <module name="RadEditorXhtmlValidator" dockingZone="Module" enabled="true" visible="false" dockable="true" />
 </modules>
  
  <tools name="BasicToolbar" dockable="true" enabled="true">  
    <tool name="FindAndReplace" shortcut="CTRL+F" />
   <tool name="Print" shortcut="CTRL+P"/>
 <tool name="AjaxSpellCheck" shortcut="F7" />
 <tool separator="true" />
    <tool name="Cut" shortcut="CTRL+X" />
    <tool name="Copy" shortcut="CTRL+C" />
 <tool name="Paste" shortcut="CTRL+V" />
    <tool name="PasteFromWordNoFontsNoSizes" />
 <tool name="FormatStripper" />
    <tool separator="true" />
    <tool name="Undo" shortcut="CTRL+Z" />
    <tool name="Redo" shortcut="CTRL+Y" />
 <tool name="RepeatLastCommand" />
    <tool separator="true" />
    <tool name="Zoom" />
  </tools>
 
  <tools name="BasicToolbar2" dockable="true" enabled="true">
 <tool name="ApplyClass" />
    <tool name="FormatBlock" />
    <tool separator="true" />
    <tool name="Indent" />
    <tool name="Outdent" />
    <tool separator="true" />
 <tool name="InsertHorizontalRule" />
 <tool name="InsertDate" />
 <tool name="InsertTime" />
 <tool name="InsertParagraph" />
 <tool name="InsertSymbol" />
 <tool separator="true" />
 <tool name="InsertUnorderedList" />
 <tool name="InsertOrderedList" />
  </tools>
 
  <tools name="EnhancedToolbar" dockable="true" enabled="true">
   <tool name="InsertTable" shortcut="CTRL+T" />
    <tool name="MOSSImageManager" shortcut="CTRL+G"  />
    <tool name="MOSSLinkManager" shortcut="CTRL+K" />
    <tool name="Unlink" shortcut="CTRL+SHIFT+K" />
  </tools>
  
  <tools name="MossTools3" dockable="true" visible="true" enabled="true">
    <tool name="ModuleManager" />
 <tool name="ToggleSource" /> 
  </tools>
 
  <paragraphs>
         <paragraph name="&lt;H1>Heading 1&lt;/H1>" value="&lt;H1>" />
         <paragraph name="&lt;H2>Heading 2&lt;/H2>" value="&lt;H2>" />
         <paragraph name="&lt;H3>Heading 3&lt;/H3>" value="&lt;H3>" />
   <paragraph name="&lt;H4>Heading 4&lt;/H4>" value="&lt;H4>" />
   <paragraph name="&lt;H5>Heading 5&lt;/H5>" value="&lt;H5>" />
   <paragraph name="&lt;H6>Heading 6&lt;/H6>" value="&lt;H6>" />
   <paragraph name="&lt;p>Normal&lt;/p>" value="&lt;p>" />
   </paragraphs>
 
  <contextMenus>
    <contextMenu forElement="*">
      <tool name="Cut"/>
      <tool name="Copy"/>
      <tool name="Paste"/>
   <tool name="LinkManager" />
    </contextMenu>
  </contextMenus>
</root>

ListConfigFile.xml
<?xml version="1.0" encoding="utf-8" ?>
<!-- ==============================================================================================
 Config File valid structure:
 <configuration>
    <property>...</property>
    ...
  <property>
   <item>...</item>
   <item>...</item>
   ...
  </property>
  ...
 </configuration>
=============================================================================================== -->
<configuration> 
  <property name="ConvertToXhtml">true</property> 
  <property name="EnableDocking">True</property> 
  <property name="ShowPreviewMode">False</property> 
  <property name="StripAbsoluteAnchorPaths">False</property> 
  <property name="StripAbsoluteImagesPaths">False</property> 
  <property name="Height">240px</property> 
  <property name="Width">500px</property> 
  <property name="Skin">Outlook</property> 
  <property name="CssFiles">     
    <item>/_wpresources/RadEditorSharePoint/4.5.0.0__1f131a624888eeed/RadControls/Editor/CssEditor.css</item> 
  </property> 
  <property name="NewLineBr">False</property> 
  <property name="StripFormattingOnPaste">MSWordRemoveAll,Span,Font</property>
</configuration> 

CssEditor.css
/* _lcid="1033" _version="12.0.4518"
    _LocalBinding */
Body
{font-family:Verdana;
font-size:10pt;
}

h1
{
 COLOR:#000000;
 font-weight:bold;
 font-size:16pt;
 font-family: Arial, Helvetica, sans-serif;
 margin: 0 0 5px 0; 
}

h2
{
 COLOR:#000000;
 font-size:14pt;
 line-height:24px;
 font-family: Arial, Helvetica, sans-serif;
 margin: 0px 0 5px 0;
}
h3
{
 COLOR:#666699;
 font-weight:bold;
 font-size:12pt;
 font-family: Arial, Helvetica, sans-serif;
 margin: 0px 0 5px 0;
}
h4
{
 COLOR:#666699;
 font-weight:bold;
 font-size:11pt;
 font-family: Arial, Helvetica, sans-serif;
 margin: 0px 0 5px 0;
}
h5
{
 COLOR:#666699;
 font-weight:bold;
 font-size:10pt;
 font-family: Arial, Helvetica, sans-serif;
 margin: 0px 0 5px 0;}
h6
{
 COLOR:#FFFFFF;
 background-color:#666699;
 font-size:9pt;
 font-weight:bold;
 font-family:Arial, Helvetica, sans-serif;
 margin: 0px 0 5px 0;}

p
{
 COLOR:black;
 font-style:normal;
 font-variant:normal;
 font-weight:normal;
 font-size:9pt;
 font-family:Verdana;
 margin-bottom:10pt;
 margin-top:0pt;
}

/* _lcid="1033" _version="12.0.4518"
    _LocalBinding */

.bold
{
 font-weight:bold;
 color:#000000;
}
.italic
{
 font-style: italic;
 color:#000000;
}
.small
{
 font-size: small;
 }

.blue
{
 COLOR:#3366CC;
 font-weight:bold;
}
.red
{
 COLOR:#FF0000;
 font-weight:bold;
}
.green
{
 COLOR:#009900;
 font-weight:bold;
}
OL
{
 font-family: Verdana;
 font-size: 10pt; 
 color: #000000;
 text-indent: 0;
 list-style-type:upper-latin;
 margin: 0 10px 0 30px;
 padding: 0 0 0px 10px;
}
OL.RomanList
{
 font-family: Verdana;
 font-size: 10pt; 
 color: #000000;
 text-indent: 0;
 list-style-type: lower-roman;
 margin: 0 10px 0 30px;
 padding: 0 0 0px 10px;
 text-transform:none;
}
OL.NumberedList
{
 font-family: Verdana;
 font-size: 10pt; 
 color: #000000;
 text-indent: 0;
 list-style-type:decimal;
 margin: 0 10px 0 30px;
 padding: 0 0 0px 10px;
}
OL.AbcList
{
 font-family: Verdana;
 font-size: 10pt; 
 color: #000000;
 text-indent: 0;
 list-style-type:lower-alpha;
 margin: 0 10px 0 30px;
 padding: 0 0 0px 10px;
}

UL
{
 font-family: Verdana;
 font-size: 10pt;
 color: #000000;
 text-indent: 0;
 line-height: 120%;
 list-style-type: disc;
 list-style-image: none;
 margin: 0 10px 0 15px;
 padding: 0 0 0 10px;
 word-spacing: 0;
}

UL.LoganBullets
{
 font-family: Verdana;
 font-size: 10pt;
 color: #000000;
 text-indent: 0;
 line-height: 120%;
 list-style-image:url('http://lccintranet/SiteCollectionImages/TheBUZZ/bullet-light-shadow.jpg');
 margin: 0 10px 0 15px;
 padding: 0 0 0px 10px;
 word-spacing: 0;
}
UL.SquareBullets
{
 font-family: Verdana;
 font-size: 10pt;
 color: #000000;
 text-indent: 0;
 line-height: 120%;
 list-style-type: square;
 list-style-image:none;
 word-spacing: 0;
 margin: 0 10px 10px 15px;
 padding: 0 0 0px 10px;

}
UL.DiscBullets
{
 font-family: Verdana;
 font-size: 10pt;
 color: #000000;
 text-indent: 0;
 line-height: 120%;
 list-style-type: disc;
 list-style-image:none;
 word-spacing: 0;
 margin: 0 10px 10px 15px;
 padding: 0 0 0px 10px;

}
li{
 padding: 4px 0 0 0;
 }
}
.title-With-Background
{
 background-color: #FEDD7A;
 margin: 0;
}
IMG.ImageBorder
{
 border: 2px solid #666699;
 background-color: #FFFFFF;

td.TableHeader
{
 margin: 10px;
 padding: 5px;
 color: #333366;
 background: #EBF3FF;
 text-align: left;
 font-size: 10pt; 
 font-style: normal;
 font-family: Arial; 
 text-transform: capitalize;
 font-weight: bold;
 border-spacing: 10px;
 line-height: 14pt;
 vertical-align: top;
}

td.TableEvenRow
{
 color: #333333;
 background-color: #FFFFFF;
 font-size: 10pt;  
 vertical-align: top;
 font-family:Verdana;
 margin: 10px;
 padding: 5px;


td.TableOddRow
{
 color: #333333;
 background-color: #EFF1F4;
 font-size: 10pt;  
 vertical-align: top;
 font-family:Verdana;
 margin: 10px;
 padding: 5px;
}
td.TableFooter
{
 background-color: #EFF1F4;
 color: #333366;
 font-weight: 600;
 font-size: 10pt; 
 font-family: Arial; 
 line-height: 11pt;
 margin: 10px;
 padding: 5px;
}
.small
{
 font-size:10px;
}
.yellowBackground
{
 background-color:#ffffcc;
}
.waterHeading
{
 background-color:#029fe2;
 font-size:11pt;
 font-weight:bold;
 color:white;
}


Thankyou in advance,

Kind regards,
Claudz

Stanimir
Telerik team
 answered on 13 Nov 2009
1 answer
259 views
Hello,

I've included an Export to excel feature for my grid, i'm facing few issues

1. I'm unable to add borders for the excel sheet. is it that i can add border for only one edge of the row/column?

BorderStyles border = new BorderStyles();  
                border.Color = Color.Black;  
                border.Weight = 1;  
                border.LineStyle = LineStyle.Continuous;  
                border.PositionType = PositionType.Top;  
                border.PositionType = PositionType.Right;  
                border.PositionType = PositionType.Left;  
                border.PositionType = PositionType.Bottom;  
                style.Borders.Add(border); 
 I've added the above code inside "RadGrd1_ExcelMLExportStylesCreated", but the excel generated has boder only for the last position type (i.e. border.PositionType = PositionType.Bottom;) the rest are overwritten.


2. I'm trying to dynamically generate the name of the excel, on clik of the export to excel button a file download window is displayed with the name which i've specified and click of "Save" this works fine. But on click of "Open" the excel files has different name (junk values). Also how do we change the sheet names.
string date = System.DateTime.Today.Date.ToString();  
string filename = "Grid Details_" + date;              
RadGrd1.ExportSettings.FileName = filename;  
RadGrd1.MasterTableView.ExportToExcel(); 
 


3. The Excel which is generated does not get aligned (i.e. Some texts are getting hidden by the next column), how do i wrap and unwrap the column text through code.

Thanks in advance.
Kavi

 

 

Johny
Top achievements
Rank 1
 answered on 13 Nov 2009
1 answer
102 views
Hi,
When I press tab key and when the content page get vertically scrolled,the top part of my master page becomes invisible..I find out the problem.It is because wh have set body height=100% in the masterpage.but when i removed that height,the page is not fully strechted.
I have used the radSpitters here.
The code is
<%@ Master Language="VB" CodeFile="Master.master.vb" Inherits="Master" %> 
    <style type="text/css">    
html, body, form    
{    
height: 100%;    
width: 100%;  
margin: 0px;    
padding: 0px;    
overflow: hidden;  
  }    
</style> 
    <div id="topdiv" style="height: 66px;" runat="server">  
           <asp:UpdatePanel ID="alertupdatepanel" runat="server">  
            <div class="topmenu" id="topmenu" runat="server">  
             <ul id="ul1" runat="server">  
              li class="messages"><href="#">Messages</a></li>  
                 </ul> 
               </div> 
                <!--topmenu--> 
                <div class="logout">  
                <href="logout.aspx" id="lnkLogOut" runat="server">Logout</a> 
                </div> 
                <!--logout--> 
            </div> 
            <!--topdiv--> 
            <div id='content' style="margin: 0 auto; width: 100%; height: 100%; background-color: #FFFFFF; overflow: hidden;">  
                <telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%" Height="100%" Style="background-color: #FFFFFF; border: none !important" Skin="newstyle" EnableEmbeddedSkins="false" VisibleDuringInit="false">  
   <telerik:RadPane ID="LeftPane" runat="server" Width="160px" Height="100%">  
          <div class="leftmenu">  
           <div class="leftmenuinner">  
          <telerik:RadAjaxPanel runat="server" ID="radajaxpanelmenu" Width="160px">  
  <telerik:RadPanelBar runat="server" ID="RadPlBMasterMenu" PersistStateInCookie="false" Skin="newstyle" EnableEmbeddedSkins="false">  
 <CollapseAnimation Duration="100" Type="None" /> 
    <ExpandAnimation Duration="100" Type="InBounce" /> 
         </telerik:RadPanelBar> 
        </telerik:RadAjaxPanel> 
         </div> 
          </div> 
   </telerik:RadPane> 
     <telerik:RadSplitBar ID="RadSplitBar1" runat="server" CollapseMode="Forward" Height="100%" /> 
    <telerik:RadPane ID="MiddlePane1" runat="server" Scrolling="none" Height="100%">  
    <div id="rightcontent" style="width: 100%">  
   <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">  
                            </asp:ContentPlaceHolder> 
                        </div> 
                        <!--rightcontent--> 
                    </telerik:RadPane> 
                </telerik:RadSplitter> 
            </div> 
 
 
Plz help me..I m very much confused  
Thanks  


Plz help me..I m very much confused  
Thanks  
Svetlina Anati
Telerik team
 answered on 13 Nov 2009
1 answer
142 views
Hi,
how can i have a combobox with multi-selection without any checkboxes ? (selected items are highlighted for examples)

Is it something i missed ?
Shinu
Top achievements
Rank 2
 answered on 13 Nov 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?