Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
70 views
Hello .
I have an Grid In my Page and I have to use ItemTemplate ,becasue I want to create Items manually.
I have some problems in IE9 . when I use compatibilityview, Everything is Ok but when I DON'T use compatibilityview , some Cells ,will Shift to Left .
I attached SnapShots of my Problem to this threat .
Please Help me How I should solve this Problem , because I cant say to all of my site visitor That Use compatibilityview Mode, It is NOT good way.
I am Using Telerik 2013 Q1 SP1 .
Venelin
Telerik team
 answered on 28 Nov 2013
3 answers
110 views
I need to access some control feature like:
change dimension and text of a RadAsyncUploader button and things like this.
where do I find the documentation of the controls to get such kind of information?

thank you
Felice

Plamen
Telerik team
 answered on 28 Nov 2013
3 answers
153 views
hi.. i'm new user for radschedular and i have questions some point.. i want to when the appointment is moved updated for database..
. js and. cs pages have only encode but I could not send my data OnClickAppointmentMoveEnd  to radschedular_appointmentUpdate..
i have tried for this "schedular.updateAppointment(appointment)" but not contact to radschedular_appointmentUpdate in .cs file..
Any help would be great.
Plamen
Telerik team
 answered on 28 Nov 2013
1 answer
120 views
Hi guys,

How can i set different increment setting step for hour field and minute field.

I mean i would like to increment/decrease one hour when pressing up/down arrows. But i would like to increment/decrease 15 minutes when pressing up/down arrows.

Thank you for your help.
Sonia.
Princy
Top achievements
Rank 2
 answered on 28 Nov 2013
6 answers
306 views
We're evaluating the trial version of the Telerik AJAX control suite, and we like it very much.

However, regarding the Grid we're wondering why we need to sort a column in ascending order first when we know upfront we want to sort descending.
The way it is now we need to fetch all data twice which costs extra time and is irritating as well.

Why not 2 sort arrows in the column header so we can trigger the sorting order we need right away?
Princy
Top achievements
Rank 2
 answered on 28 Nov 2013
3 answers
166 views
In my grid if I set the DataKeyName field ReadOnly to "true" so it cannot be edited when I click a row to enter edit mode I get this error,
Unhandled exception at line 885, column 13 in http://localhost:59512/ScriptResource.axd?d=j9g8KwFmyomCksH8Wgu8D921e69mOXBSgcRNM_TYTpo8fsl9bB8knaOk3eJy7i5Vsb6eNonPd3OAqh2MBYPCrNV52HuzPz2Aa-oyIrtDhXd-WOK9m-TImS6nd3inJNNp1xw6jnQGAvJnKfjurTJifqmDUI5njfi6aRYOERJTLDf7VE7Tms_H7Dr6lpjgTT2J0&t=6119e399

0x800a139e - JavaScript runtime error: Sys.WebForms.PageRequestManagerServerErrorException: Value cannot be null.

Parameter name: g


If I do not set the DataKeyName field ReadOnly="true" I do not get this error, but the field is shown and editable in the edit popup.
Princy
Top achievements
Rank 2
 answered on 28 Nov 2013
0 answers
91 views
Nevermind. Its totally user error.
 
Beth
Top achievements
Rank 1
 asked on 27 Nov 2013
4 answers
140 views
I have a GridTemplateColumn that has a checkbox as a item template.
How can i update a column say "ClassNo" with a value in a textbox on a button click.
Any idea or work around
Thank you
Edd
Top achievements
Rank 1
 answered on 27 Nov 2013
2 answers
150 views
Hi,
I have a following problem. First code:
<telerik:RadPanelBar runat="server" ID="RadPanelBar2" ExpandMode="SingleExpandedItem" Width="100%">
            <Items>
                <telerik:RadPanelItem ImageUrl="~/Images/Att.png" Text="MojAtak" runat="server" Expanded="True">
                    <Items>
                        <telerik:RadPanelItem runat="server">
                            <ItemTemplate>
                                <asp:TextBox ID="ReportBox" class="text" runat="server" Style="height: 99%; width: 98%; font-size: 9px; border-style: none;" TextMode="MultiLine" onkeyup="javascript: czytaj();"></asp:TextBox>
                                <asp:TextBox ID="txtKto" runat="server" class="text" Height="14px" Style="width: 140px;" Font-Size="Small" BackColor="#CCFFFF" Font-Italic="True"></asp:TextBox>
                            </ItemTemplate>
                        </telerik:RadPanelItem>
                    </Items>
                </telerik:RadPanelItem>
 
                <telerik:RadPanelItem ImageUrl="~/Images/Cone.png" Text="Outbox" runat="server">
                    <Items>
                        <telerik:RadPanelItem runat="server">
                            <ItemTemplate>
                                <asp:TextBox ID="txtKogoS" runat="server" class="text" Height="14px" Style="width: 140px;" Font-Size="Small" ReadOnly="True" BackColor="#CCFFFF" Font-Italic="True"></asp:TextBox>
                                <asp:TextBox ID="txtDataS" runat="server" class="text" Height="14px" Style="width: 140px;" Font-Size="Small" ReadOnly="True" BackColor="#CCFFFF" Font-Italic="True"></asp:TextBox>
                            </ItemTemplate>
                        </telerik:RadPanelItem>
                    </Items>
                </telerik:RadPanelItem>
            </Items>
        </telerik:RadPanelBar>
 
        <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
            <script type="text/javascript">
                var ReportBox = '<%=((TextBox)RadPanelBar2.Items[0].Items[0].FindControl("ReportBox")).ClientID%>';
                var KtoBox = '<%=((TextBox)RadPanelBar2.Items[0].Items[0].FindControl("txtKto")).ClientID%>';
                function czytaj() {
 
                    alert($get(ReportBox).value);
 
                    var raport = $get(ReportBox).value;
                    if (raport.search("ygraÅ‚") > 0 || raport.search("z walki:") > 0 || raport.search("Remis") >= 0) {
                        alert("Kto");
                        //kto
                        var k1 = raport.indexOf("w.", 0);
                        var wynikS = raport.substring(k1 + 3);
                        var k2 = wynikS.indexOf("otrzyma", 0);
                        var kto = wynikS.substring(0, k2 - 1);
                        alert(kto);
                        alert(KtoBox);
 
                    } else {
                        alert("!!!!");
                    }
                }
            </script>
        </telerik:RadScriptBlock>

onkeyup - I can access whatever user entered in the ‘ReportBox’ but I can’t update ‘txtKto’.

If anyone have any suggestion please go ahead. Oh and please keep in mind I'm a rookie.

Thank you

John
Top achievements
Rank 1
 answered on 27 Nov 2013
1 answer
74 views
Hello Support,

We have been using Rad Async upload control for file uploading in ASP.NET Web application for one of our clients. Rad Async upload control works fine for Chrome, Firefox and IE10. But with IE9 or below a strange javascript error is encountered saying

"DOM Script bridge is disabled".


This happens while uploading the file to the server. Can you please guide me through this issue?


Thanks
Dimitar Terziev
Telerik team
 answered on 27 Nov 2013
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?