Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
164 views
Hi,

I'm facing an issue which supposed to be Fixed in the last internal build ( Telerik.Web.UI_2012_1_327_Dev_hotfix ).

What's fixed

  • FIX New IDs are set to the template controls after first postback.

i still have the same issue i donn't know why ?

Attached some pictures shows that my radzone ClientID changed every time i do postback from inside an orgChart template , the click event that do the postback is creating a new node to the orgchart  and bind the orgchart again, so when i do that the orgchart set new IDs to the templates.

while when i do postback from a button outside the orgchart and bind the orgchart again it doesn't set new IDs.

Thank you.

 
Peter Filipov
Telerik team
 answered on 03 Apr 2012
3 answers
129 views
Hi,

I have implemented RadGrid dynamically on page_init method with detailstables and a nestedtemplate in one of the details table. The nested template contains a radtreelist control. I am able to export the items in excel and word formats but in pdf format the Radtreelist control is ignored and only the details tables without any nestedtemplate are exported. Is there any way of exporting RadTreeList along with grid?

Thanks,
Karthik 
Andrey
Telerik team
 answered on 03 Apr 2012
4 answers
164 views
I am using q2 2010. I am using the radasyn control to upload files. The Issue I am having is I can't tell which file to delete and remove. Say I have 5 files uploaded and want to remove one, since I uploaded all the files to the DB I need to delete the fiel from the DB as well as the client screen. I can'''t seen to find a way to achieve both options. I can delete from the client screen but can delete from the db becasue I can't tell which file is being deleted. I can only get the index of the file. I have searched for some documentation on the onclientdeleteing eventargs but it is no longer used by the newer version . Do you have any suggestions. I have all the id for the files uploaded and associated with each image as the image id but I can't tell which file is being deleted. Thanks in advance
Peter Filipov
Telerik team
 answered on 03 Apr 2012
4 answers
198 views
Hi,
We are using RadEditor in one our applications. When I click on custom "edit" button, sometimes we can view the Editor in "Edit" mode with the menu bar and sometimes it is appearing in "ReadOnly" mode with no menubar.

In addition, we are getting below javascript error - 

Message: Sys.ScriptLoadFailedException: The script 'http://abc.org/ScriptResource.axd?d=PXU5PYVlsSAmomgk0nyvIlpeNELXgOMdbbdJYAToZa-l1-Mo-zC2tLuxv06A5GCYRIZyeeNmQs3jF_UrNmsIcQ--Sbv2GennOczCZb5eaoooq8EGFs3xgieVsU1aNFhv5vwL9A2&t=633819774120000000' failed to load. Check for:
 Inaccessible path.
 Script errors. (IE) Enable 'Display a notification about every script error' under advanced settings.
 Missing call to Sys.Application.notifyScriptLoaded().
Line: 3311
Char: 13
Code: 0
URI: http://abc.org/ScriptResource.axd?d=lLlZdKFJoJSpNbrIhm1ySYnogN0hQK--8ZYhjumziLsPkqiTRAI1Us0XWe3laPkDOlJwkGyIl4WgTS6msHl4ZFZ2EM3i2BwdB2ez7IRdsGos__UF3s2WcpHLJzlJ0dSpJHE9a6MaYTxNfPwqOCQs7oJ1yWVplRdIP9klyh5ESgT4FImf0&t=63310697697537394
3

Could you please provide me the resolution at the earliest??

Rumen
Telerik team
 answered on 03 Apr 2012
1 answer
74 views
Hi,
Here my function
function SelectedIndexChangedHandler(sender, args) {
    var $ = $telerik.$;
    if (args.get_item().get_value() == "NULL") {
        var ResourceComboBox = $find($("[id$='Form_ResActivites']").attr("id"));
        //var emptyItem = ResourceComboBox.findItemByText("Consultation");
        var items = ResourceComboBox.get_items();
        items.getItem(2).select();
    }
}
 I try de set a selected default value to my combo box resource when i add a new appointement
 (startInsertingInAdvancedForm="true"),
It don't work.
I'm in WebService binding mode, what is wrong in my code ??? thanks
Plamen
Telerik team
 answered on 03 Apr 2012
2 answers
101 views
Hi,
I try to customize appointment with  InlineEditTemplate tags . I'm in a WebServiceSettings to retreive appointments.
Is it now possible in this configuration with the latest version (Q12) ?
Please, what is the most simple way to do that ?? (template jquery ? AdvancedInsertTemplate ? )
Thanks for your answer.
Jean-Yves
Plamen
Telerik team
 answered on 03 Apr 2012
1 answer
846 views

I had a profit and loss sheet displaying in radgrid.. I want to display the total credit and debit for each group. Can you have any solution to display totals for every group in Radgrid
Please find the attachment for better understanding of my problem
Princy
Top achievements
Rank 2
 answered on 03 Apr 2012
1 answer
125 views
Hello,
how can i use a checkboxlist in the grid?
I have created a grid with inside a EditItemTemplate:
<telerik:GridTemplateColumn DataField="TypeObjectTypes"
    FilterControlAltText="Filter TypeObjectTypes column" HeaderText="Object Type"
    UniqueName="TypeObjectTypes">
    <EditItemTemplate>
        <asp:CheckBoxList ID="CblObjectTypes" runat="server">
            <asp:ListItem Value="DynamicImage">Dynamic Image</asp:ListItem>
            <asp:ListItem Value="StaticURL">Static URL</asp:ListItem>
            <asp:ListItem>Static Text</asp:ListItem>
            <asp:ListItem Value="DynamicScrolltext">Dynamic Scrolltext</asp:ListItem>
            <asp:ListItem Value="FreeText">Free Text</asp:ListItem>
            <asp:ListItem>Object List</asp:ListItem>
        </asp:CheckBoxList>
    </EditItemTemplate>
    <ItemTemplate>
        <asp:Label ID="TypeObjectTypesLabel" runat="server"
            Text='<%# Eval("TypeObjectTypes") %>'></asp:Label>
    </ItemTemplate>
</telerik:GridTemplateColumn>
...
</telerik:RadGrid>
<asp:ObjectDataSource ID="ObjectDataSource2" runat="server"
    DeleteMethod="DeleteLayoutType" InsertMethod="InsertLayoutType"
    SelectMethod="GetLayoutTypes"
    TypeName="LayoutTypesBLL" UpdateMethod="UpdateLayoutType" >
    <DeleteParameters>
        <asp:Parameter Name="TypeID" Type="Int32" />
    </DeleteParameters>
    <InsertParameters>
        <asp:Parameter Name="TypeName" Type="String" />
        <asp:Parameter Name="TypeText" Type="String" />
        <asp:Parameter Name="TypeObjectTypes" Type="String" />
        <asp:Parameter Name="TypeMenu" Type="String" />
        <asp:Parameter Name="TypePriority" Type="Int32" />
        <asp:Parameter Name="ProjectID" Type="Int64" />
    </InsertParameters>
    <UpdateParameters>
        <asp:Parameter Name="TypeName" Type="String" />
        <asp:Parameter Name="TypeText" Type="String" />
        <asp:Parameter Name="TypeObjectTypes" Type="String" />
        <asp:Parameter Name="TypeMenu" Type="String" />
        <asp:Parameter Name="TypePriority" Type="Int32" />
        <asp:Parameter Name="ProjectID" Type="Int64" />
        <asp:Parameter Name="TypeID" Type="Int32" />
    </UpdateParameters>
</asp:ObjectDataSource>

When I create a new record i need this format in the database field "TypeObjectTypes" from the selected items from the CheckBoxList:
"DynamicScrolltext,FreeText".
How can i save the selected items in the DataBase and which event can i use for this?
When i show the EditItemTemplate, how can i select the right items in the CheckBoxList from this format ("DynamicScrolltext,FreeText")?

Best regardsReiner
Marin
Telerik team
 answered on 03 Apr 2012
1 answer
51 views
Hi,
EnableRootItemScroll causes an issue in Chrome. When set to true, all sub menu's display horizontally instead of vertically. See demo
http://demos.telerik.com/aspnet-ajax/menu/examples/functionality/scrolling/defaultcs.aspx
Any solution to correct this?
Kate
Telerik team
 answered on 03 Apr 2012
1 answer
84 views
Hello,
I'm building my radgridview programmatically. The source is datatable which I build too. 
When I'm in editmode (I use InPlace) how can I get the new data in the on the update?

I can retrieve the row of the edited item but how can I get the column?
I tried to do something like that:

 e.Item.DataItem("Unique_Name")

but I can't get it work... 

Can you help?
Thanx
Blop
Top achievements
Rank 1
 answered on 03 Apr 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?