Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
142 views

Use the demo sceen->Custom calculated strength score. example..

Independent of any settings get_strengthScore always returns a exact 5 points per char typed, i.e changing any settinh has zero affect on the score..

O'Man
Top achievements
Rank 1
 answered on 17 Nov 2011
0 answers
1.1K+ views
Since Q3 2011, all existing skins, except Default, are moved to a separate skins assembly (Telerik.Web.UI.Skins.dll). By doing so, we were able to reduce few megabytes off the main assembly and transfer that load to the skins assembly. And though 6 megabytes might seem modest for some, it's some 40% reduction in terms of the file size: Separate Skin Assembly in RadControls for ASP.NET AJAX with Q3'11.

As it was mentioned four months ago, all embedded skins (except the Default one, which will remain plugged in the Telerik.Web.UI.dll) will be shifted to the Telerik.Web.UI.Skins.dll and to utilize any embedded skin other than the Default skin, you will have to have a valid reference to the new AJAX skins dll in your project.

If a different from the Default skin is set and the Telerik.Web.UI.Skins.dll is not present in the /Bin folder, the following server error will appear on the page:

Telerik.Web.UI.[Telerik Control] with ID='[Telerik Control ID]' was unable to find embedded skin with name '[Skin Name]'. Please, make sure that you spelled the skin name correctly, or if you want to use a custom skin, set EnableEmbeddedSkins=false.


More information is available in these help articles:
Skins Location
and
Skins Troubleshooting

Note that you should restart Visual Studio after adding a reference to the Telerik.Web.UI.Skins.dll.

If you use the Telerik WebUI VSExtensions upgrade wizard to update your projects, upgrade the tool to version 2011.3.1125.0 or later in the Extensions Manager of Visual Studio. This will ensure that the Telerik.Web.UI.Skins.dll assembly will be copied automatically to the /bin folder by the upgrade wizard.
Telerik Admin
Top achievements
Rank 1
Iron
 asked on 17 Nov 2011
1 answer
183 views
Is there a way to disable the editor form that appears when a user double clicks an appointment in the RadCalendar?  We have a separate mechanism for editing this data and are using the Calendar control as a read-only view.  I've tried disabling editing, but it still pops up the form when I double-click an appointment.  Thanks!

Dave
Jayesh Goyani
Top achievements
Rank 2
 answered on 17 Nov 2011
1 answer
36 views
Hello,
I have a chart that receive queries dinamically created. In some cases I have only 1 description field in X axis, in other situation I have a description composed by more than 1 field. I'd like to dinamically fill DataLabelsColumn... is it possible with code behind?

Thanks
Evgenia
Telerik team
 answered on 17 Nov 2011
6 answers
175 views
Hi,

I have the following RadGrid:

<telerik:RadGrid ID="m_gvwUpdate_ScenariosMarketInputData" runat="server" DataSourceID="m_gvwUpdate_ScenariosMarketInputDataDataSource" AllowPaging="false" AllowSorting="false" OnItemCommand="m_gvwUpdate_ScenariosMarketInputData_OnItemCommand">
                        <MasterTableView AutoGenerateColumns="False" DataKeyNames="ScenarioID" ClientDataKeyNames="ScenarioID"
                           TableLayout="Fixed" DataSourceID="m_gvwUpdate_ScenariosMarketInputDataDataSource">
                           <PagerStyle Mode="NextPrevAndNumeric" Visible="true" AlwaysVisible="true" />
                           <NoRecordsTemplate>
                              <div style="padding: 5px;">
                                 <asp:Label ID="m_lbl_NoData" runat="server" Text="No data on database" />
                              </div>
                           </NoRecordsTemplate>
                           <Columns>
                              <telerik:GridBoundColumn DataField="ScenarioName" HeaderText="Name" SortExpression="ScenarioName"
                                 UniqueName="ScenarioName">
                                 <ItemStyle Wrap="True" />
                              </telerik:GridBoundColumn>
                              <telerik:GridBoundColumn DataField="StrategicPeriodName" HeaderText="Strategic Period"
                                 SortExpression="StrategicPeriodName" UniqueName="StrategicPeriodName">
                                 <ItemStyle Wrap="True" />
                              </telerik:GridBoundColumn>
                              <telerik:GridTemplateColumn UniqueName="Official" HeaderText="Official" ItemStyle-HorizontalAlign="Center">
                                 <HeaderStyle Width="50px" />
                                 <ItemTemplate>
                                    <asp:Image runat="server" ID="m_img_Official" Visible='<% #Eval("Official") %>' ImageUrl="~/Images/ok.png"
                                       AlternateText="Official" SkinID="Grid" />
                                 </ItemTemplate>
                              </telerik:GridTemplateColumn>
                              <telerik:GridTemplateColumn UniqueName="IsReadOnly" HeaderText="Locked" ItemStyle-HorizontalAlign="Center">
                                 <HeaderStyle Width="50px" />
                                 <ItemTemplate>
                                    <asp:Image runat="server" ID="m_img_IsReadOnly" Visible='<% #Eval("IsReadOnly") %>'
                                       ImageUrl="~/Images/ok.png" AlternateText="Locked" SkinID="Grid" />
                                 </ItemTemplate>
                              </telerik:GridTemplateColumn>
                              <telerik:GridBoundColumn DataField="Created" HeaderText="Created By" UniqueName="Created"
                                 SortExpression="Created">
                                 <ItemStyle Wrap="True" />
                                 <HeaderStyle Width="120px" />
                              </telerik:GridBoundColumn>
                              <telerik:GridBoundColumn DataField="CreationDate" HeaderText="Creation Date" UniqueName="CreationDate"
                                 SortExpression="CreationDate" DataFormatString="{0:dd-MM-yyyy &nbsp;&nbsp; HH:mm}">
                                 <ItemStyle Wrap="True" />
                                 <HeaderStyle Width="120px" />
                              </telerik:GridBoundColumn>
                              <telerik:GridBoundColumn DataField="Modified" HeaderText="Modified By" UniqueName="Modified"
                                 SortExpression="Modified">
                                 <ItemStyle Wrap="True" />
                                 <HeaderStyle Width="120px" />
                              </telerik:GridBoundColumn>
                              <telerik:GridBoundColumn DataField="LastModify" HeaderText="Last Modify" UniqueName="LastModify"
                                 SortExpression="LastModify" DataFormatString="{0:dd-MM-yyyy &nbsp;&nbsp; HH:mm}">
                                 <ItemStyle Wrap="True" />
                                 <HeaderStyle Width="120px" />
                              </telerik:GridBoundColumn>
                              <telerik:GridTemplateColumn UniqueName="CopyColumn" ItemStyle-HorizontalAlign="Center">
                                 <HeaderStyle Width="30px" />
                                 <ItemTemplate>
                                    <asp:ImageButton runat="server" ID="m_img_Copy" ImageUrl="~/Images/copySmall.png"
                                       AlternateText="Copy" SkinID="Grid" ToolTip="Copy" OnClientClick='<% # "openWinCopyScenariosMarketInputData(" + (int)Eval("ScenarioID") + "); return false;" %>' />
                                 </ItemTemplate>
                              </telerik:GridTemplateColumn>
                              <telerik:GridTemplateColumn UniqueName="UpdateColumn" ItemStyle-HorizontalAlign="Center">
                                 <HeaderStyle Width="30px" />
                                 <ItemTemplate>
                                    <asp:ImageButton runat="server" ID="m_img_Update" ImageUrl="~/Images/editSmall.png"
                                       AlternateText="Update" SkinID="Grid" ToolTip="Update" OnClientClick='<% # "openWinUpdateScenariosMarketInputData(" + (int)Eval("ScenarioID") + "); return false;" %>'
                                       Visible='<% # (Zelando.SEM.BLL.ScenariosMarketInputDataManager.CanUnlockMarketScenario((int)Eval("ScenarioID")) && (bool)Eval("IsReadOnly")) || !(bool)Eval("IsReadOnly") %>' />
                                 </ItemTemplate>
                              </telerik:GridTemplateColumn>
                              <telerik:GridTemplateColumn UniqueName="DeleteColumn" ItemStyle-HorizontalAlign="Center">
                                 <HeaderStyle Width="30px" />
                                 <ItemTemplate>
                                    <asp:ImageButton runat="server" ID="m_img_Delte" ImageUrl="~/Images/deleteSmall.png"
                                       AlternateText="Delete" SkinID="Grid" ToolTip="Delete" CommandName="Delete" OnClientClick="return confirm('Are you sure you want to delete the item?');"
                                       Visible='<% # Zelando.SEM.BLL.ScenariosMarketInputDataManager.CanDeleteMarketScenario((int)Eval("ScenarioID")) && !(bool)Eval("IsReadOnly") %>' />
                                 </ItemTemplate>
                              </telerik:GridTemplateColumn>
                           </Columns>
                        </MasterTableView>
                        <ClientSettings>
                           <Scrolling AllowScroll="true" UseStaticHeaders="true" ScrollHeight="100px" />
                           <Selecting AllowRowSelect="True" />
                           <KeyboardNavigationSettings EnableKeyboardShortcuts="false" />
                           <ClientEvents OnRowSelected="RowSelected" />
                        </ClientSettings>
                     </telerik:RadGrid>

and allowing UseStaticHeaders I have a big rendering problem with all browser.

What can I do?


Thanks in advance!

Francesco Balatti
zelando.com
Pavlina
Telerik team
 answered on 17 Nov 2011
1 answer
52 views
Hello,
I have a problem where the textbox in a radupload doesn't display when running IE7 and some versions of compatibility view (only tried IE8 and IE9 so far).  Also the whole line that it is on becomes clickable for browsing.

Here's the code
<td class="frmLabel">PDF:</td>
<td align="left">
        <telerik:RadUpload ID="ruPDF" runat="server" Width="300px" MaxFileInputsCount="1" AllowedFileExtensions=".pdf" ControlObjectsVisibility="None" Localization-Select="Browse" EnableFileInputSkinning="true" >
        </telerik:RadUpload>
</td>

Thank You
Genady Sergeev
Telerik team
 answered on 17 Nov 2011
3 answers
107 views
I'm needing to check if there is a current active appointment for the current date and time when using recurrence.
Princy
Top achievements
Rank 2
 answered on 17 Nov 2011
1 answer
39 views
Hello,

Is it possible to customize the height and width of the ribbon bar, group or the button?  I need it to minimize the space taken by the ribbon bar.

Thanks.
Shinu
Top achievements
Rank 2
 answered on 17 Nov 2011
1 answer
66 views
Hi,
I have got two grids, where drag and drop is possible. I am using the event Row drop.

When I drag the row, I want the row drop event to be triggered only when the row is dragged outside that particular grid. Else I don't want to trigger the RowDrop event.
Jayesh Goyani
Top achievements
Rank 2
 answered on 17 Nov 2011
6 answers
87 views
Hi Telerik Team,

I'm using the "Windows7" skin as my default skin for RadGrid.
However, I want to edit the pager style of this skin. For example I want to switch the items counter from right to left, so the pagination will be on right and the items counter on left.
Meanwhile the default position is: Pagination on Left and Items counter on right.

Please do let me know how can I achieve such scenario.

Thanks,
Bilal
Jayesh Goyani
Top achievements
Rank 2
 answered on 17 Nov 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?