Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
999 views
How to get selected value of Radcombobox?
Like in Dropdownlist when we say
string str = Dropdownlist1.SelectedValue.ToString();

in str we can get the selected value of the dropdownlist, so the same way how can i get the selected value of Radcombobox.
cause it has the property selectedvalue but i am getting null there, can anyone help me how to do this.
i want this because based on the selected value of the first Radcombobox i am loading the next so inputs required......
Senthil ramna
Top achievements
Rank 1
 answered on 13 Aug 2010
1 answer
90 views
Is it possible to create a RadGrid solely on the client side?  I know I wont' have access to all the usual server side events and data binding, but if I do all the events and data binding on the client, is this possible?
Princy
Top achievements
Rank 2
 answered on 13 Aug 2010
5 answers
187 views
Hi,

Please treat this as high priority!

When we launch a RadWindow from inside a RadGrid Cell click event, RadWindow shows but after content loading is complete, the IE Progress bar (in the main window) still shows .. like as if the response still is not complete...

Are you guys aware of this issue? Any help would be great.

Hi,

We've almost similar issue , the IE Status bar never stops the progress bar...
This happens (only) when we launch a RadWindow from inside a RadGrid Row or Cell click event.

The content of the Radwindow is shown and then the IE progress bar starts displaying the bar and increasing...
the IE status bar stops when we close the RadWindow.

Can you help to fix this issue?

Update: If we set this property ShowContentDuringLoad = true, the the IE progress bar shows only for the very first click, any subsequent click, the Status bar goes away!  We also use ReloadOnShow=true.

Thanks,

Gopi
Radoslav
Telerik team
 answered on 13 Aug 2010
1 answer
131 views
I have a main page with a radgrid. In that page is a button that opens up a RadWindow where the user can make some changes that will affect the radgrid. The user hits 'save and close' and I process those changes in the codebehind and then I close the radwindow. Right before closing the radwindow, I'd like to rebind the radgrid that's in the main page.

Is that possible? I'm able to close the radwindow, but not rebind at the moment. That's what I'm missing.
Shinu
Top achievements
Rank 2
 answered on 13 Aug 2010
1 answer
50 views
How to customize radwindow's head?

Thanks,

Yao
Shinu
Top achievements
Rank 2
 answered on 13 Aug 2010
1 answer
130 views
i'm trying to set the text for the grid if no records are displayed...

PublishedGrid.MasterTableView.NoMasterRecordsText = "my text here'

 

;

This does not seem to do anything. How can I programmatically set the text?

Thanks!

 

 

 

 

 

sayitfast
Top achievements
Rank 2
Iron
 answered on 12 Aug 2010
9 answers
213 views

I just installed SharePoint 2010 Foundation and now trying to incorporate Telerik AJAX controls to enable Spell Check for editing.
Following the instructions, "Deploying RadControls for ASP.NET Ajax" I do not see "Telerik.Web.UI" in C:\Windows\assembly.

Additionally, when attempting to get to /Program Files/Common Files/Microsoft Shared/web server extensions/wpresources/RadEditorSharePoint/6.0.0.0__1f131a624888eeed/Resources/, I do not see the RadEditorSharePoint folder.

I am using the RadControls_for_ASP.NET_AJAX_and_SharePoint_2010_Trial.msi install.

I would really like to get Spell check working so that I can show it to management in order to secure purchasing the product.

Naim
Top achievements
Rank 1
 answered on 12 Aug 2010
2 answers
92 views
I have used panel bar in one of my web controls. There is another one the main page which is working fine which has items added manually. This one is using template item example. Kindly see to if if I am missing anything. This is to clarify that the the first panel has controls and some functionality which is working fine with code behind. I dont know what is needed to enable these expand collapse button.

<telerik:RadPanelBar ID="RadPanelBar1" Runat="server" Width="95%" 
           Skin="Office2007" AllowCollapseAllItems="True" 
           ExpandMode="SingleExpandedItem">
           <Items>
               <telerik:RadPanelItem runat="server" Text="User Management" 
                   Value="UserManagement">
               <ItemTemplate>
               <asp:Panel ID="pnlUserAdd" runat="server">
         <table style="width:100%;">
           <tr>
               <td class="style9">
                   <asp:Label ID="Label1" runat="server" Text="New User Id"></asp:Label>
               </td>
               <td class="style8">
                   <asp:TextBox ID="TxtUserId" runat="server" Width="150px" MaxLength="10" 
                       ValidationGroup="Entry"></asp:TextBox>
                   <sup>*</sup></td>
               <td>
                   <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" 
                       ErrorMessage="Must Enter User Id" ValidationGroup="Entry" 
                       ControlToValidate="TxtUserId"></asp:RequiredFieldValidator>
               </td>
           </tr>
           <tr>
               <td class="style9">
                   <asp:Label ID="Label2" runat="server" Text="Password"></asp:Label>
               </td>
               <td class="style8">
                   <asp:TextBox ID="txtPassw" runat="server" MaxLength="10" TextMode="Password" 
                       ValidationGroup="Entry" Width="150px"></asp:TextBox>
                   <cc1:PasswordStrength ID="txtPassw_PasswordStrength0" runat="server" 
                       Enabled="True" TargetControlID="txtPassw" 
                       TextCssClass="background-color:white;">
                   </cc1:PasswordStrength>
                   <sup>*</sup></td>
               <td>
                   <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" 
                       ErrorMessage="Must Enter Password" ValidationGroup="Entry" 
                       ControlToValidate="txtPassw"></asp:RequiredFieldValidator>
               </td>
           </tr>
             <tr>
                 <td class="style9">
                     <asp:Label ID="Label24" runat="server" Text="Repeat Password"></asp:Label>
                 </td>
                 <td class="style8">
                     <asp:TextBox ID="txtPassw2" runat="server" TextMode="Password" 
                         ValidationGroup="Entry" Width="150px"></asp:TextBox>
                     <sup>*</sup></td>
                 <td>
                     <asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" 
                         ControlToValidate="txtPassw2" ErrorMessage="Must Enter Password" 
                         ValidationGroup="Entry"></asp:RequiredFieldValidator>
                     <asp:CompareValidator ID="CompareValidator1" runat="server" 
                         ControlToCompare="txtPassw" ControlToValidate="txtPassw2" 
                         ErrorMessage="Passwords should be same" ValidationGroup="Entry"></asp:CompareValidator>
                 </td>
             </tr>
           <tr>
               <td class="style16">
                   <asp:Label ID="Label3" runat="server" Text="User Role"></asp:Label>
               </td>
               <td class="style17">
                   <asp:DropDownList ID="drpUserRole" runat="server" ValidationGroup="Entry" 
                       Width="150px">
                   </asp:DropDownList>
                   <sup>*</sup></td>
               <td class="style18">
                   <asp:LinkButton ID="LinkButton1" runat="server" onclick="LinkButton1_Click">Refresh</asp:LinkButton>
                   </td>
           </tr>
             <tr>
                 <td class="style7" colspan="2">
                     <asp:ImageButton ID="imgUserAdd" runat="server" AlternateText="Add User" 
                         Height="45px" ImageUrl="~/Images/user_add.png" ToolTip="Add User" 
                         ValidationGroup="Entry" Width="45px" onclick="imgUserAdd_Click" />
                      </td>
                 <td class="style19">
                     </td>
             </tr>
       </table>
       </asp:Panel>
               </ItemTemplate>
             
               </telerik:RadPanelItem>
               <telerik:RadPanelItem runat="server" Text="Users Data" Value="UsersData">
                  <ItemTemplate>
                  Must Show
                  </ItemTemplate>
               </telerik:RadPanelItem>
               <telerik:RadPanelItem runat="server" Text="Deleted Users">
                  <ItemTemplate>
                  Must Show
                 
                  </ItemTemplate>
               </telerik:RadPanelItem>
               <telerik:RadPanelItem runat="server" Text="User Profile" Value="UserProfile">
               <ItemTemplate>
               Must Show
             
               </ItemTemplate>
               </telerik:RadPanelItem>
           </Items>
       </telerik:RadPanelBar>
Aamir Ali Ansari
Top achievements
Rank 2
 answered on 12 Aug 2010
2 answers
105 views

Hi,

I am using radtabstrip and radmultipageview in my screen. The width of both is set to 100%. When I open the screen the screen loading find with 100%. No problem

Now I have added RadSplitter with 2 pans and sliding zone. “Main Pan” has the tabstrip and multipageview. “Right Pan” has “RadSlidingZone”. Now when I open the screen, the screen open with 50% width and tehn expands to be 100%. The screen is flicking. The following is my code. What am I missing?

<telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%" Height="600px">

<telerik:RadPane ID="MainPane" runat="server" Width="100%" Height="600px">
        -- RadTabStrip and RadMultiPageView goes here.
</telerik:RadPane>

<telerik:RadSplitBar ID="RadSplitbar1" runat="server">
</telerik:RadSplitBar>

<telerik:RadPane ID="RightPane" runat="server" Width="30" Scrolling="Both" Height="600px">
        <telerik:RadSlidingZone ID="SlidingZone1" runat="server" Width="30" SlideDirection="Left"
                                ClickToOpen="true">
              <telerik:RadSlidingPane ID="Pane1" runat="server" Width="200" Height="120" IconUrl="../Images/RecordActions.gif">
                       <telerik:RadPanelBar runat="server" ID="RadPanelBar1" ExpandMode="MultipleExpandedItems"
                                        OnItemClick="RadPanelBar1_ItemClick" Skin="Windows7">
                       </telerik:RadPanelBar>
              </telerik:RadSlidingPane>
              <telerik:RadSlidingPane ID="Pane2" runat="server" Width="200" Height="120" IconUrl="../Images/EventHistory.gif">
                                    View Event History
              </telerik:RadSlidingPane>
              <telerik:RadSlidingPane ID="Pane3" runat="server" Width="200" Height="120" IconUrl="../Images/ChangeHistory.gif">
                                    Change history
              </telerik:RadSlidingPane>
       </telerik:RadSlidingZone>
</telerik:RadPane>
</telerik:RadSplitter>

Thanks in advance

usr9999
Top achievements
Rank 1
 answered on 12 Aug 2010
2 answers
127 views
Hello!

I'm playing around with RadGrid and spent already some days researching on how to customize autogenerated fields and have two questions:

How can I define a diferent  label color for a required field or even the text/checkbox etc?
I read a bit about using ColumEditor and tried from the example:

<telerik:GridCheckBoxColumnEditor ID="requiredCheckBox" runat="server" >
    <CheckBoxStyle BackColor="#edffc3" BorderColor="#ecbb0d" BorderStyle="Solid" ForeColor="#7fa822"  />
</telerik:GridCheckBoxColumnEditor>

It makes the color as it should but even when the records are listed and not only for the edit/insert/update mode. How can I change this... and further, isn't there a generic way to do this instead of having to format all individual fields?

Another thing I'm trying to accomplish is to create a basic page with a RadGrid and EntityDataSource on it and apply the table on page load so I can do something similar as a master page for generic tables with few fields so if I decide to change something on the grid I can have it applied to all of them?

Is there a way to accomplish this?

Thanks
Ricardo Rekowsky
Top achievements
Rank 1
 answered on 12 Aug 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?