Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
81 views
Has anyone tried using the Rotator in IE7 using increased magnification? The text doesnt seem to scroll at all except at the normal 100% magnification.

Firefox seems ok though
Georgi Tunev
Telerik team
 answered on 16 Oct 2008
1 answer
198 views

 



I am using Aps.net web application..
In my rad grid i need to delete multiple rows...

i am using following code i get multi row deletion...

But when i am using  MutiPage View in Radtap strip..

I cant delete Multiple rows....

Is Anything i need to put on my code...when i am using tap strip control


 

protected void btnDelmails_Click(object sender, EventArgs e)

 

{

 

 

foreach (GridDataItem item in grdInbox.MasterTableView.Items)

 

 

{

 

 

CheckBox chkbx = (CheckBox)item.FindControl("chkSelect");

 

 

 

 

if (chkbx.Checked)

 

 

{

 

 

int Mails = Convert.ToInt32(item.GetDataKeyValue("QuestionId").ToString());

 BllAlerts.DeleteInbox(Mails);

}

}

BindInbox();

}

 

 

 

 

<telerik:RadTabStrip ID="RadTabStrip1" runat="server" SelectedIndex="0" MultiPageID="RadMultiPage1" Skin="Web20">

 

 

<Tabs>

 

 

<telerik:RadTab runat="server" Text="INBOX">

 

 

 

</telerik:RadTab>

 

 

 

<telerik:RadTab runat="server" Text="SENT MAILS" Selected="True">

 

 

 

</telerik:RadTab>

 

 

 

</Tabs>

 

 

 

</telerik:RadTabStrip>

 

Regards

Friend 

 

Yavor
Telerik team
 answered on 16 Oct 2008
1 answer
68 views
Hello..
Can Telerik confirm the issue of 'multiple selections with GridClientSelectColumn in Inplace Edit mode' is still a bug in RadGrid for ASP.NET but fixed in the AJAX(Prometheus) version?  I'm currently using the GridClientSelectColumn in the RadGrid for ASP.NET AJAX version without any issues.

"Unfortunately it (multiple row selections) seems this is a bug with the RadGrid row selection when the EditMode is set to "InPlace". However this problem is not present with the RadGrid for ASP.NET AJAX so I can suggest you to use that version of the control."

Thanks!
Pavel
Telerik team
 answered on 16 Oct 2008
1 answer
56 views
Hello,

I use the Rad Grid Control in a DotNetNuke Module and  I can't not localisize like how you discripe in the telerik example:

 

protected void RadGrid1_ColumnCreated(object sender, GridColumnCreatedEventArgs e)

 

{

 

GridColumn boundColumn = e.Column as GridColumn;

 

 

switch (boundColumn.UniqueName)

 

{

 

case "Stop":

 

boundColumn.HeaderText =

"My customized contact name";

 

 

break;

 

 

case "SpotTime":

 

boundColumn.HeaderText =

"My customized contact title";

 

 

break;

 

 

case "Address":

 

boundColumn.HeaderText =

"My customized address";

 

 

break;

 

 

default :

 

boundColumn.HeaderText =

"default";

 

 

break;

 

}

}

Nothing is changing ?

What is my mistake ?

Yavor
Telerik team
 answered on 16 Oct 2008
5 answers
385 views
I have a chart where it shows up to 100% for test results for a series of topics. The issus I have is that, each bar shows the value at the top, except where the student scores 100%. I have set the max value of the Y-Axis to 110 but the chart now displays values up to 120 on the Y-Axis. Changing the step doesn't seem to affect this behaviour nor does setting the AutoScale.
Simon
Top achievements
Rank 1
 answered on 16 Oct 2008
1 answer
96 views
Hi,

I have the following code in my Web User Control

    <telerik:RadGrid ID="ProdTable" runat="server" Width="100%" AutoGenerateColumns="False" GridLines="None" Skin="Office2007" AllowPaging="True" PageSize="5" OnDeleteCommand="ProdTable_DeleteCommand">
        <MasterTableView>
            <RowIndicatorColumn>
                <HeaderStyle Width="20px" />
            </RowIndicatorColumn>
            <ExpandCollapseColumn>
                <HeaderStyle Width="20px" />
            </ExpandCollapseColumn>
            <Columns>
                <telerik:GridButtonColumn HeaderText="Serial No. History" Text="View" UniqueName="ProdSerialHist">
                </telerik:GridButtonColumn>
                <telerik:GridBoundColumn DataField="ProdSerialNo" HeaderText="Serial No." UniqueName="ProdSerialNo">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="ProdSerialRemark" HeaderText="Serial No. Remarks" UniqueName="ProdSerialRemark">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="ProdType" HeaderText="Product" UniqueName="ProdType">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="ProdUnitUser" HeaderText="Unit(s) / User(s)" UniqueName="ProdUnitUser">
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="ProdCost" HeaderText="Cost" UniqueName="ProdCost" >
                </telerik:GridBoundColumn>
                <telerik:GridBoundColumn DataField="ProdTotalAmt" HeaderText="Total Amount" UniqueName="ProdTotalAmt" Visible="False">
                </telerik:GridBoundColumn>
                <telerik:GridButtonColumn CommandName="Delete" ConfirmText="1 Record Will Be Deleted, Confirm?" ConfirmTitle="Deleting record" Text="Delete" UniqueName="ProdTableDelete">
                </telerik:GridButtonColumn>
            </Columns>
        </MasterTableView>
        <FilterMenu EnableTheming="True" Skin="Office2007">
            <CollapseAnimation Duration="200" Type="OutQuint" />
        </FilterMenu>
    </telerik:RadGrid>

<telerik:RadWindow ID="SerialHistoryWindow" runat="server" Width="400px" OpenerElementID="Button 1">
                <telerik:RadGrid id="SerialNoTable" runat="server" AutoGenerateColumns="False" GridLines="None" Width="400px" Skin="Office2007" OnNeedDataSource="SerialNoTable_NeedDataSource">
                    <mastertableview>
<RowIndicatorColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>

<ExpandCollapseColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
<Columns>
<telerik:GridBoundColumn DataField="ProductSerialNo" HeaderText="Serial No." UniqueName="ProductSerialNo"></telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ProductSerialRemarks" HeaderText="Remarks" UniqueName="ProductSerialRemarks"></telerik:GridBoundColumn>
</Columns>
</mastertableview>
                    <filtermenu enabletheming="True" Skin="Office2007">
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</filtermenu>
                </telerik:RadGrid></telerik:RadWindow>


How do i open the RadWindow from the radgrid and from this column

<telerik:GridButtonColumn HeaderText="Serial No. History" Text="View" UniqueName="ProdSerialHist">

using codebehind









Georgi Tunev
Telerik team
 answered on 16 Oct 2008
1 answer
133 views
Hi
In my application,I used Date Picker & time picker seperately.
I use the below code to avoid null values

If

 

  RadDatePicker1.IsEmpty Then
RadDatePicker1.SelectedDate = "01/01/2000"
End If

My problem is how to clear the data in raddatepicker1 when clicking new button
Also when I retrieve the data from the database, if the date in the database is "01/01/2000"
,I need the raddatepicker1 control data is empty.

 

Princy
Top achievements
Rank 2
 answered on 16 Oct 2008
3 answers
291 views
Hi,

I think I'm overseeing a very simple thing here, but I just cannot get the SelectedItems collection filled....

I have the following control:
<telerik:RadGrid ID="grdTemplates" runat="server" AutoGenerateColumns="False" GridLines="None" AllowMultiRowSelection="false"AllowSorting="false" OnNeedDataSource="grdTemplates_NeedDataSource" OnItemDataBound="grdTemplates_ItemDataBound" OnItemCommand="grdTemplates_ItemCommand">
<ClientSettings
>
    <Selecting AllowRowSelect="True"></Selecting
>
</ClientSettings>


The selection client-side is not problem. But when I click on the Next button on the screen, the grdTemplates.SelectedItems.Count is always 0.

Can somebody please tell me what I'm doing wrong?

Kind regards,

Aldert Polman


Daniel
Telerik team
 answered on 16 Oct 2008
1 answer
74 views
Good afternoon,
I've recently, downloaded the trial of this product and have created a toolbar with the neccessary functionality for my purpose. My company would like to have the ability to install the toolbar to IE and Firefox as well as uninstall if needed. Some toolbars have issues as being declared as spyware. We currently do j2ee programming for our Prod Internet which is managed by a CMS. Does your radtoolbar web component need to be built as a web user control project in Visual Studio? How would we deploy a radtoolbar to the above browsers? Does your company handle optimization as far as getting around spyware issues?
Thanks in advance,
Chris Gilbert
Erjan Gavalji
Telerik team
 answered on 16 Oct 2008
1 answer
72 views
Hi

In Javascript I need to get the width of a RadTimePicker.

I use the following code (where Picker can be either a RadDatePicker or RadTimePicker):

function getElementDimensions(Picker)
{
    var textBox = Picker.get_textBox();
    var dimensions = Picker.getElementDimensions(textBox);

    return dimensions;
}


I find for a RadDatePicker this works well in IE7, FF3 and Safari 3 for both height and width.

For a RadTimePicker the height is correct for all 3 browsers.

However the width is only correct in IE7. FF3 and Safari are way out.

Is there a different approach needed for a RadTimePicker?


Kind regards

Mark Eaton
Missing User
 answered on 16 Oct 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?