Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
45 views
Hi.
i have two level editable grid. On expand is it possible to hide the parent edit column?
Shinu
Top achievements
Rank 2
 answered on 03 Jan 2014
5 answers
68 views
Hello.

I'm using the RadPersistenceManager in a grid of my system. When I group by some field, no problem, the group uses the column label for its label. But when I change my page, and return to the previous page (where is my grid), the grouping is using the datafield's
name of the column.

For example:

Account
Name | Adress | Phone

After changin and returning to the page:

User.AccountDescription
Name | Adress | Phone

How can I fix it?

Regards.

Daniel
Telerik team
 answered on 03 Jan 2014
1 answer
145 views
If I have the timeslots set to 7:00am - 10:00pm, I need to set the start time and end times in the advanced insert and advanced edit forms to be the same. Currently, they are 8:00am - 5:30pm. I need to do this client side. All the examples I see do this server side.
Boyan Dimitrov
Telerik team
 answered on 03 Jan 2014
16 answers
305 views
Hello Telerik Team,


I am using Rad Editor version (2012.3.1308.35) and I am fetching Image view path and upload path with other virtual directory on Production  Server but Unable to get Image through Image Manager and most of the button and links are disable in Image Manager.

So Please let us know How we can fix this issue. I am pasting My HTML code here -

I have two site on Production Server Which is -


1- http://localhost/Admin 4.0/admin.aspx and html code of Rad Editor is following But I am giving path of other Virtual directory configured on same server Which is -
http://localhost/Belnet 4.0/LoginForm.aspx and Img Path is in http://localhost/Belnet 4.0/Img So I am writing path of Image view -~/Belnet4.0/Img and code is following please check-

  <telerik:RadEditor ID="RadEditor1" runat="server" ShowSubmitCancelButtons="false" OnClientLoad="OnClientLoad" OnClientSubmit="OnClientSelectionChange"
                    Width="835px" ToolsHeight="200px" ToolsWidth="835px"  ContentFilters="MakeUrlsAbsolute">
                <ImageManager  ViewPaths="~/Belnet4.0/Img" UploadPaths="~/Belnet4.0/Img" DeletePaths="~/Belnet4.0/Img" />
                   <FlashManager ViewPaths="/belnet4/CS" UploadPaths="/belnet4/CS" DeletePaths="/belnet4/CS" />
                   <TemplateManager ViewPaths="/belnet4/Pages" UploadPaths="/belnet4/Pages" DeletePaths="/belnet4/Pages" />
                   <DocumentManager ViewPaths="/belnet4/Docs" UploadPaths="/belnet4/Docs" DeletePaths="/belnet4/Docs" />
                   <SilverlightManager ViewPaths="/belnet4/JS" UploadPaths="/belnet4/JS" DeletePaths="/belnet4/JS" />
                 </telerik:RadEditor>



Please let me know If I need to write any thing else here .




Alok
Top achievements
Rank 1
 answered on 03 Jan 2014
1 answer
58 views
Hi,
        We are using radeditor in asp.net application.Can you provide code for changing the cursor style[i.e hand,] from hand to default  on Design,Html and Preview buttons when the editor is disabled.

I need this functionality using javascript and c#.

Please revert back with comments ASAP.

thanks
vinay
Dobromir
Telerik team
 answered on 03 Jan 2014
4 answers
439 views
Hi all,

In my application, I have rad grid. I want export it into excel. For this I am using oledb connection. The grid is exporting into the excel. Now the problem is the grid contains the footer row. The footer row is not exporting in excel. Anybody please help on this how to export the radgrid data into the excel with header and footer row. Thanks in advance.

Regards,
Akki
Princy
Top achievements
Rank 2
 answered on 03 Jan 2014
3 answers
98 views
Hi,

I have written the code for Hierarchical Grid as per the reply of support ticket id : 660933.Its working fine.

I need to recreate the structure for Hierarchical Grid every-time on button click.(because columns & rows & Childtables of grid will get changed on button click with respect to some settings as per our requirement).

If I refer 2013.2.717.35 telerik trial version dll in my code,
Scenario:
On InitLoad, the grid shows expand icon for child rows.When I click button, the expand icon disappears in the grid for child rows,once I have changed the pagesize of grid,the grid shows expand icon for child rows.

But if I refer 2012.3.1308.35 telerik trial version dll in the code,the above scenario works fine.

How to overcome the issue expand icon disappears in the grid for child rows on button click with  2013.2.717.35 telerik dll reference? Please provide me the solution as soon as possible. Thanks in advance.

Sample Code Snippet:

 protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            rdGrdCollapsibleGrid.Columns.Clear();
            rdGrdCollapsibleGrid.MasterTableView.DetailTables.Clear();    
            DataSet ds = getMockDataForCG();
            CreateHierarchicalGridStructure(rdGrdCollapsibleGrid, ds);
            rdGrdCollapsibleGrid.DataBind();        
        }   
    }

    protected void rdGrdCollapsibleGrid_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
    {
        if (!e.IsFromDetailTable)
        { 
            DataSet ds = getMockDataForCG();
            if (ds.Tables[ds.Tables.Count - 2] != null && ds.Tables[ds.Tables.Count - 2].Rows.Count > 0)
                rdGrdCollapsibleGrid.VirtualItemCount = Convert.ToInt32(ds.Tables[ds.Tables.Count - 2].Rows[0][ds.Tables[ds.Tables.Count - 2].Columns.Count - 1]);
            rdGrdCollapsibleGrid.DataSource = ds.Tables[0];
        }       
    }

  protected void rdGrdCollapsibleGrid_DetailTableDataBind(object sender, GridDetailTableDataBindEventArgs e)
    {      
          //Here code for binding data onto respective detail table of  grid
    }

    protected void btnRecreate_Click(object sender, EventArgs e)
    {
        rdGrdCollapsibleGrid.Columns.Clear();
        rdGrdCollapsibleGrid.MasterTableView.DetailTables.Clear();
        DataSet ds = getMockDataForCG();
       CreateHierarchicalGridStructure(rdGrdCollapsibleGrid, ds);
       rdGrdCollapsibleGrid.Rebind();
    }
Eyup
Telerik team
 answered on 03 Jan 2014
4 answers
112 views
Using a radskinmanager with showchooser set to True

Is there a way to limit the choices shown in the dropdown?

I would just like to show Metro Touch and Default

thanks!
Mike
Top achievements
Rank 1
 answered on 03 Jan 2014
1 answer
48 views
How do I determine if a radlistbox is empty using javascript?

Thanks
Thomas
Shinu
Top achievements
Rank 2
 answered on 03 Jan 2014
5 answers
239 views
Hi,
I am using rad tree view within asp.net page. In page i have set the MaintainScrollPositionOnPostback="true". But when i expand the tree, scroll position goes to expanded item. I want my page's scroll position to remain same. Let me know how can i fix this.

Thanks,
Shinu
Top achievements
Rank 2
 answered on 03 Jan 2014
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?