Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
233 views
I have the timeline view configured to show a multi-column table in the resource area.  I have the header and the content lining up, but I would like to have a horizontal scroll bar show up.  You provide horizontal scrolling in the appointment area and it includes the content and the header.  I assume you have an event associated with the horizontal scrollbar to move the header along with the content.

Do you have any plans to provide more flexibility in the appearance of the resource area?

Peter
Plamen
Telerik team
 answered on 10 Apr 2012
2 answers
137 views
<CommandItemTemplate>                                               
    <div style="width:100%; height:100%;">
        <asp:LinkButton ID="btnAddDropShipSubjectArea" runat="server" CommandArgument="SubjectArea" CommandName="InitInsert">
<
img style="border:0px" alt="" src="../CSS/View/Grid/AddRecord_ToolTip.gif" /> Add Subject Area
        </asp:LinkButton>
        <asp:LinkButton ID="btnAddDropShipItem" runat="server" CommandArgument="Item" CommandName="InitInsert">
<
img style="border:0px" alt="" src="../CSS/View/Grid/AddRecord_ToolTip.gif" /> Add Item
        </asp:LinkButton>
    </div>
</CommandItemTemplate>  
<Columns>
    <telerik:GridDropDownColumn Visible="false" UniqueName="ddlSubjectAreaCodes" DataField="IntAreaCode_SK"
        HeaderText="ID" DropDownControlType="RadComboBox" AutoPostBackOnFilter="true">
    </telerik:GridDropDownColumn>
</Columns> 

I have a grid with the markup above. I have two link buttons that do two different things; I couldn't find
out how to populate ddlSubjectAreaCodes with different data based on the link clicked in the ItemCreated
event.
Any help is appreciated.
Thanks
fahd
Top achievements
Rank 1
 answered on 10 Apr 2012
3 answers
126 views
Is there a way to disable a sliding panel's tab from the server side? The "enabled" attribute on the RadSlidingPane does not seem to do the trick.
Dobromir
Telerik team
 answered on 10 Apr 2012
1 answer
151 views
Hi,
I have a grid with a GridTemplateColumn checkbox. And a button.
When my button fires I loop all MasterTableView Items and find out which ones are checked.

For every checked row I do perform a delete (server side).
Before it I would like to open a radwindow to do some other stuff

it look like this

     For Each item As GridDataItem In RadGridNM.MasterTableView.Items
                Dim myChk As CheckBox = CType(item.FindControl("CheckBoxSet"), CheckBox)
                If myChk.Checked Then                            
                    RadAjaxManager1.ResponseScripts.Add(String.Format("OpenNews(" & valQuestion & ");"))

            '----------------------------
            'here perform delete    
           
                End If

   Next


My goal is to wait until radwindow is closed to perform the delete operation, clearly it does not happen and the loop goes on.
I know that the problem is they works in two different level client-side and server-side.
How do i achieve my goal? someone can help me?
Thank you.
Kevin
Top achievements
Rank 2
 answered on 10 Apr 2012
1 answer
108 views
Hello

I have a RadGrid and use the page size as 25. However if I have more than 25 results, but less then 50 results, and I change my page size to 50; the grid will show all results, but the navigation bar is no longer displayed.That is i can't change the page size  without reloading the page.
How to show the navigation bar always?

Thanks,
Sigma.
Shinu
Top achievements
Rank 2
 answered on 10 Apr 2012
4 answers
49 views
Hi,

In the most recent version the text colour seems to have changed to white (when using the black skin).  

Inspecting the css in chrome I see the following.

.RadSplitter_Black .rspPane, .RadSplitter_Black .rspPaneHorizontal, .RadSplitter_Black .rspSlideContent {
color: white;
}
.RadSplitter .rspSlideContent {
background-color: white;
}

Obviously it looks like someone has mucked up on this as it's not normally the best idea to set the text and background colour to the same colour.

Regards,
Jon
Jon
Top achievements
Rank 1
 answered on 10 Apr 2012
2 answers
98 views
Hi,

I am having "NestedViewTemplate" with in the "MasterTableView".   ( RadGrid )

In NestedViewTemplate, Some readonly controls, and three editable textboxes.
In MasterTableView, i have some GridBoundColumn and a GridButtonColumn.

My requirement is i need to update my source list, when your users enters text in nestedviewtemplate textbox.  Currently when ever i am clicking the enter key after giving some text in nestedviewtemplate textbox, its calling radgrid itemcommand event, since mastertable view contain a button column.

Can i pass any command argument from the textbox ( inside the nestedview template ) to differentiate with masterview button click  (or) can we attach any server side event for the texboxes inside the nestedview template. ?


Ram
Top achievements
Rank 1
 answered on 10 Apr 2012
8 answers
249 views
Hi ALL,

I am using telerik rad grid , but i am unable to find the <telerik:GridDragDropColumn> tag.

MY grid code look like:

<

 

div style="float: left; padding: 0 6px 0 10px">

 

 

<h2 style="color: #9c3608">

 

Pending Orders

</h2>

 

 

<telerik:RadGrid runat="server" ID="grdPendingOrders" OnNeedDataSource="grdPendingOrders_NeedDataSource"

 

 

AllowPaging="True" Width="350px" OnRowDrop="grdPendingOrders_RowDrop" AllowMultiRowSelection="true"

 

 

PageSize="30" EnableHeaderContextMenu="true">

 

 

<MasterTableView DataKeyNames="QuestionnairePK" TableLayout="Fixed">

 

 

<Columns>

 

 

<telerik:GridDragDropColumn HeaderStyle-Width="18px" Visible="false" /> --> i am unable to write this tag. its throwing error like 'Unknown server tag 'telerik:GridDragDropColumn'.

 

 

</Columns>

 

 

</MasterTableView>

 

 

<ClientSettings AllowRowsDragDrop="True" AllowColumnsReorder="true" ReorderColumnsOnClient="true">

 

 

<Resizing AllowColumnResize="true" />

 

 

<Selecting AllowRowSelect="True" EnableDragToSelectRows="false" />

 

 

<ClientEvents OnRowDropping="onRowDropping" />

 

 

<Scrolling AllowScroll="true" UseStaticHeaders="true" />

 

 

</ClientSettings>

 

 

<PagerStyle Mode="NumericPages" PageButtonCount="4" />

 

 

</telerik:RadGrid>

 

</

 

div>


Thanks in advance
sameer

 

Noonecares
Top achievements
Rank 1
 answered on 10 Apr 2012
3 answers
169 views
I am getting a weird  "script16385 not implemented" error from both my current project and in Telerik's demo in the IE 9 dev console.

http://demos.telerik.com/aspnet-ajax/captcha/examples/captchaaudiocode/defaultcs.aspx


I am currently using telerik 2011.3.1305.40.

Any ideas what is going on?

Thanks,
Chris
Slav
Telerik team
 answered on 10 Apr 2012
1 answer
177 views
Hello,

I want to clear the content of RadTextBox when the user focuses on a textbox so that the user can write his/her name.

Thanks,
Sigma.
Shinu
Top achievements
Rank 2
 answered on 10 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?