Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
177 views
I'm trying to change using javascript the value of a control I have added to the footer of my list. For instance, I have added a asp.net label with id 'lblCount'. What would be the easiest way to find the control in my javascript?

Thanks,
Joe
Veronica
Telerik team
 answered on 22 Apr 2011
6 answers
333 views
I have an application that is opening a RadWindow which contains two combo boxes that are used to filter a RadScheduler. The application is a dental scheduler. The user selects a location and a doctor and the calendar refreshes to show all appointments for the month. There is also a RadGrid to show client previous appointments for a selected item.

The app works great for the most part. The problem I'm having is that I had to import data from an old Access app that didn't have all of the fields available in the new app. So I had to default the doctor, and all imported records were set to one person. Moving forward the dental staff can reset these as they have time. I don't know who the customer saw, only the dental staff would.

Problem is that if you select this one doctor, the scheduler REALLY dogs. Any navigation of months is extremely slow. I have the database indexed but the loading of the RadScheduler is slow. For the new entries that are split apart there is no issue.

Is there some sort of trick like on-demand loading, server caching, or something else I could do to speed this up in the interim? I don't think it's going to be an issue when the staff gets all of the appointments reset to the proper doctors. At that time there won't be a single doctor with thousands of appointments. What I see data-wise is that the scheduler chokes at over 30 appointments in a month.

Thanks!
Peter
Telerik team
 answered on 22 Apr 2011
4 answers
67 views
Hi

  We are facing problem with drag and drop feature in tree view particularly in MAC, when we drag and drop items inside tree view from one item to another or if we try to rename the items inside treeview or if we drag n drop items to telerik gridview, data won't get updated or its updated very very slowly.

  Just wanted to know if this a known issue in MAC or if there is work around.

thanks
Pramodh
Nikolay Tsenkov
Telerik team
 answered on 22 Apr 2011
1 answer
73 views
I have a RadGrid on my form that has Grouping Enabled. When I run this in IE 8 the Grid shows up fine, the Group Panel is at the top and I can Group.

When I go to FireFox the group Panel is off to the left of the columns. It looks like its being treated like another column. My code is below.

 
 <telerik:RadGrid ID="gv_RadQueryResults" runat="server" AllowFilteringByColumn="True"
                                                            AllowMultiRowEdit="True" AllowPaging="True" AllowSorting="true" AutoGenerateColumns="true"
                                                            BorderStyle="None" BorderWidth="0px" CellPadding="0" GridLines="None" PageSize="15" Skin="Simple" Width="100%" ShowGroupPanel="True">
                                                            <ClientSettings AllowDragToGroup="True">
                                                            </ClientSettings>
                                                            <HeaderContextMenu CssClass="GridContextMenu GridContextMenu_Default">
                                                            </HeaderContextMenu>
                                                            <MasterTableView CellPadding="0" CellSpacing="0">
                                                                <CommandItemSettings ExportToPdfText="Export to Pdf" />
                                                                <RowIndicatorColumn FilterControlAltText="Filter RowIndicator column">
                                                                </RowIndicatorColumn>
                                                                <ExpandCollapseColumn FilterControlAltText="Filter ExpandColumn column">
                                                                </ExpandCollapseColumn>
                                                                <EditFormSettings>
                                                                    <EditColumn FilterControlAltText="Filter EditCommandColumn column">
                                                                    </EditColumn>
                                                                </EditFormSettings>
                                                                <Columns>
                                                                    <telerik:GridTemplateColumn AllowFiltering="False" FilterControlAltText="Filter TemplateColumn column"
                                                                        ShowFilterIcon="False" ShowSortIcon="False" UniqueName="TemplateColumn">
                                                                        <ItemTemplate>
                                                                            <asp:CheckBox ID="chkbxRow" runat="server" />
                                                                        </ItemTemplate>
                                                                        <ItemStyle Width="20px" />
                                                                    </telerik:GridTemplateColumn>
                                                                    <telerik:GridButtonColumn ButtonType="ImageButton" CommandName="ViewRecord" FilterControlAltText="Filter column column"
                                                                        ImageUrl="Images/view.gif" UniqueName="column">
                                                                        <ItemStyle Width="20px" />
                                                                    </telerik:GridButtonColumn>
                                                                </Columns>
                                                            </MasterTableView>
                                                            <FilterMenu EnableImageSprites="False" EnableTheming="True">
                                                                <CollapseAnimation Duration="200" Type="OutQuint" />
                                                            </FilterMenu>
                                                            <HeaderStyle Font-Size="Smaller" HorizontalAlign="Center" Wrap="False" />
                                                            <GroupPanel BorderStyle="None" EnableTheming="True">
                                                                <PanelStyle BorderStyle="None" CssClass="RadGrouping" HorizontalAlign="Left" />
                                                                <PanelItemsStyle BackColor="#E0E0E0" BorderStyle="None" CssClass="RadGrouping" HorizontalAlign="Left" />
                                                            </GroupPanel>
                                                            <GroupHeaderItemStyle HorizontalAlign="Left" />
                                                            <ExportSettings IgnorePaging="True">
                                                            </ExportSettings>
                                                        </telerik:RadGrid>
Tsvetina
Telerik team
 answered on 22 Apr 2011
3 answers
44 views
Is it possible to download additional skins (if any) available for RadGrid?
Tsvetina
Telerik team
 answered on 22 Apr 2011
3 answers
140 views
Does anyone know if there is a way to get the appointments in RadScheduler to be pushed to mobile phone calendars automatically?  For example, my Google calendars use Active Sync to update my Outlook, iPhone, and online calendars automatically.

Thanks!

Matt
Veronica
Telerik team
 answered on 22 Apr 2011
2 answers
154 views
I am using the scheduler with the following setup:
- Multiple scheduler instances
- Common resources (soccer fields, rooms etc.)
- Common categories (match, training, other)
- Advanced Form template

Conditions:
Resources is not allowed for double-booking/overlap in a timeslot in any scheduler instance.
Categories can be the same in multiple timeslots in any scheduler instance.

Now, to achieve this I've combined the functions "ExceedsLimit" and "ConflictsWithOccurrences" (described by Telerik elsewhere) and expanded them with ResourceID. Like this, used in the AppointmentInsert event:

If ExceedsLimit(e.Appointment, e.Appointment.Resources.GetResourceByType("Resource").Key) OrElse ConflictsWithOccurrences(e.Appointment, e.Appointment.Resources.GetResourceByType("Resurs").Key) Then
...
End If

And in the AppointmentUpdate event:

If ExceedsLimit(e.ModifiedAppointment, e.ModifiedAppointment.Resources.GetResourceByType("Resurs").Key) OrElse ConflictsWithOccurrences(e.ModifiedAppointment, e.ModifiedAppointment.Resources.GetResourceByType("Resurs").Key) Then
...
End If


I've modified the "ExceedsLimit" like this:

Protected Function ExceedsLimit(ByVal apt As Appointment, ByVal ResourceID As String) As Boolean
    Dim appointmentsCount As Integer = 0
    Dim allAppointments As New AppointmentCollection
    'Fill temporary appointments collection for use in comparison
    'Subjectfield is used for comparison on ResourceID
    For Each dr As DataRow In cS.GetReservationsByResourceID(ResourceID)
        DirectCast(allAppointments, IList).Add(New Appointment(dr("ID"), dr("Start"), dr("End"), dr("ResourceID")))
    Next
    'Search through all appointments from all calendar instances and compare to current moved/changed/inserted appointment
    For Each existingApt As Appointment In allAppointments.GetAppointmentsInRange(apt.Start, apt.[End])
        If existingApt.Visible And existingApt.Subject = ResourceID Then
            appointmentsCount += 1
        End If
        ' If this is a recurring appointment, we will also check if it's occurrences   
        ' overlap with other appointments in the current view   
        Dim parsedRule As RecurrenceRule
        If RecurrenceRule.TryParse(existingApt.RecurrenceRule.ToString(), parsedRule) And existingApt.Subject = ResourceID Then
            parsedRule.SetEffectiveRange(RadScheduler1.VisibleRangeStart, RadScheduler1.VisibleRangeEnd)
            For Each occurrence As DateTime In parsedRule.Occurrences
                appointmentsCount = RadScheduler1.Appointments.GetAppointmentsInRange(occurrence, occurrence.Add(existingApt.Duration)).Count
                If (appointmentsCount > (AppointmentsLimit - 1)) Then
                    Return True
                End If
            Next
        End If
    Next
    Return (appointmentsCount > AppointmentsLimit - 1)
End Function

And the  "ConflictsWithOccurrences" like this:

Protected Function ConflictsWithOccurrences(ByVal apt As Appointment, ByVal ResourceID As String) As Boolean
    Dim allAppointments As New AppointmentCollection
    'Fill temporary appointments collection for use in comparison
    'Subjectfield is used for comparison on ResourceID
    For Each dr As DataRow In cS.GetReservationsByResourceID(ResourceID)
        DirectCast(allAppointments, IList).Add(New Appointment(dr("ID"), dr("Start"), dr("End"), dr("ResourceID")))
    Next
    Dim parsedRule As RecurrenceRule
    For Each existingApt As Appointment In allAppointments.GetAppointmentsInRange(apt.Start, apt.[End])
        If RecurrenceRule.TryParse(existingApt.RecurrenceRule.ToString(), parsedRule) Then
            'parsedRule.SetEffectiveRange(RadScheduler1.VisibleRangeStart, RadScheduler1.VisibleRangeEnd);      
            For Each occurrence As DateTime In parsedRule.Occurrences
                'check if the start time of the occurrence is within the range of the appointment:      
                If (occurrence.CompareTo(apt.Start) > 0) And (occurrence.CompareTo(apt.[End]) < 0) Then
                    Return True
                End If
                'check if the end time of the occurrence is within the range of the appointment:      
                If (occurrence.Add(existingApt.Duration).CompareTo(apt.Start) > 0) And (occurrence.Add(existingApt.Duration).CompareTo(apt.[End]) < 0) Then
                    Return True
                End If
                'check if the start time of the appointment is within the range of the occurrence:      
                If (apt.Start.CompareTo(occurrence) > 0) And (apt.Start.CompareTo(occurrence.Add(existingApt.Duration)) < 0) Then
                    Return True
                End If
                'check if the end time of the appointment is within the range of the occurrence:      
                If (apt.[End].CompareTo(occurrence) > 0) And (apt.[End].CompareTo(occurrence.Add(existingApt.Duration)) < 0) Then
                    Return True
                End If
                'check if start or end the appoitnment coincide with start or end of the occurrence      
                If (apt.Start.CompareTo(occurrence) = 0) OrElse (apt.Start.CompareTo(occurrence.Add(existingApt.Duration)) = 0) OrElse (apt.[End].CompareTo(occurrence) = 0) OrElse (apt.[End].CompareTo(occurrence.Add(existingApt.Duration)) = 0) Then
                    Return True
                End If
            Next
        End If
    Next
    Return False
End Function

This has helped me alot, but not enough as it fails in some cases:

1. The first ocurrence in a recurring appointment is not allowed to be updated, it conflicts whith itself.

No matter how I try to modify the functions, I can't seem to solve It completely. Only new pitfalls arises... I try to check and compare for "Insert new", "update existing", "If recurring" and so on.

Is there any obvoius faults in the above code or is there any better solution to meet these requirements?


Peter
Telerik team
 answered on 22 Apr 2011
4 answers
153 views
I know I have a fairly complex page(see html below)...but I have a Search Sliding Pane on the right side of the screen.  When I hit the enter key or the Search button, it searches, but the Loading Panel does not work...but no errors.

Then, when the Search Results come back, the PanelBar and expands to reveal the RadGrid.  Data looks good.

Then, when I select an item in the Grid, it loads the Details into the lower half of the RadPanel and expands that.  HERE, I get the Loading Panel which is what I want...but I want the Loading Panel TOO when I search for items...

Again, no errors, just no loading panel when I search. 

Help?  Maybe I need to open a support ticket for this one.  This page is getting complex fast. 

thanks

mark

NOTE:  This HTML is in a "Child" page...It has a Master Page with RadPanes on it.  This HTML is in the "Content" section of the Child Page.

 

<P><telerik:RadScriptBlock ID="RadScriptBlock1" 
runat="server"><BR>        <script 
type="text/javascript"><BR>            
$(document).ready(function () 
{<BR>                
$(".trigger").click(function () 
{<BR>                    
$(".panel").toggle("fast");<BR>                    
$(this).toggleClass("active");<BR>                    
return 
false;<BR>                
});<BR>            
});</P>
<P>        
</script><BR>    
</telerik:RadScriptBlock><BR>    <telerik:RadSplitter 
ID="RadSplitter1" runat="server" Width="100%" Height="100%" 
Skin="WebBlue"><BR>        
<telerik:RadPane ID="RadPane1" runat="server" Width="100%" 
Height="100%"><BR>            
<asp:Panel ID="panelSearchResultsAndDetails" 
runat="server"><BR>                
<telerik:RadPanelBar ID="radPanelScripts" runat="server" Skin="WebBlue" 
Height="100%" 
Width="100%"><BR>                
<Items><BR>                    
<telerik:RadPanelItem runat="server" Text="Search Results" 
Width="100%"><BR>                        
<ContentTemplate><BR>                            
<table 
width="100%"><BR>                                
<tr><BR>                                    
<td align="right" 
class="formLabel"><BR>                                        
<telerik:RadButton ID="btnPrintSelection" Skin="WebBlue" runat="server" 
OnClick="btnPrintSelectionScript_Click"<BR>                                            
Text="Print 
Preview"><BR>                                        
</telerik:RadButton><BR>                                        
<asp:CheckBox ID="ckHideSearchResultsFilter" AutoPostBack="true" 
runat="server" Text="Hide Filter 
Row"<BR>                                            
OnCheckedChanged="ckHideSearchResultsFilter_CheckChanged" 
/><BR>                                        
<asp:CheckBox ID="ckHideSearchResultsGroupPanel" AutoPostBack="true" 
runat="server"<BR>                                            
Text="Hide Grouping Row" 
OnCheckedChanged="ckHideSearchResultsGroupPanel_CheckChanged" 
/><BR>                                    
</td><BR>                                
</tr><BR>                            
</table><BR>                            
<telerik:RadGrid ID="radgridSearchResults" runat="server" 
AllowFilteringByColumn="True"<BR>                                
AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" 
GridLines="None"<BR>                                
PageSize="25" ShowGroupPanel="True" 
OnSelectedIndexChanged="radgridSearchResults_SelectedIndexChanged"<BR>                                
Skin="WebBlue" OnNeedDataSource="radgridSearchResults_NeedDataSource" 
OnItemDataBound="radgridSearchResults_ItemDataBound"><BR>                                
<ClientSettings 
AllowColumnsReorder="True"><BR>                                    
<Scrolling AllowScroll="True" ScrollHeight="420" UseStaticHeaders="True" 
/><BR>                                
</ClientSettings><BR>                                
<MasterTableView><BR>                                    
<CommandItemSettings ExportToPdfText="Export to Pdf" 
/><BR>                                    
<RowIndicatorColumn FilterControlAltText="Filter RowIndicator 
column"><BR>                                        
<HeaderStyle Width="20px" 
/><BR>                                    
</RowIndicatorColumn><BR>                                    
<ExpandCollapseColumn FilterControlAltText="Filter ExpandColumn 
column"><BR>                                        
<HeaderStyle Width="20px" 
/><BR>                                    
</ExpandCollapseColumn><BR>                                    
<Columns><BR>                                        
<telerik:GridBoundColumn DataField="division" FilterControlWidth="35" 
HeaderText="Division"<BR>                                            
SortExpression="division" 
UniqueName="colDivision"><BR>                                            
<HeaderStyle Width="8%" 
/><BR>                                            
<ItemStyle Width="8%" 
/><BR>                                        
</telerik:GridBoundColumn><BR>                                        
<telerik:GridButtonColumn DataTextField="Title" CommandName="Select" 
FilterControlAltText="Filter column 
column"<BR>                                            
HeaderText="Title" SortExpression="title" 
UniqueName="column"><BR>                                            
<HeaderStyle Width="50%" 
/><BR>                                            
<ItemStyle Width="50%" 
/><BR>                                        
</telerik:GridButtonColumn><BR>                                        
<telerik:GridBoundColumn DataField="authors" FilterControlAltText="Filter 
colAuthors 
column"<BR>                                            
HeaderText="Author" SortExpression="authors" 
UniqueName="colAuthors"><BR>                                            
<HeaderStyle Width="25%" 
/><BR>                                            
<ItemStyle Width="25%" 
/><BR>                                        
</telerik:GridBoundColumn><BR>                                        
<telerik:GridBoundColumn DataField="date_covered" 
DataFormatString="{0:MM/dd/yyyy}"<BR>                                            
FilterControlAltText="Filter colCoverageDate column" HeaderText="Coverage 
Date"<BR>                                            
SortExpression="date_covered" 
UniqueName="colCoverageDate"><BR>                                        
</telerik:GridBoundColumn><BR>                                    
</Columns><BR>                                    
<EditFormSettings><BR>                                        
<EditColumn FilterControlAltText="Filter EditCommandColumn 
column"><BR>                                        
</EditColumn><BR>                                    
</EditFormSettings><BR>                                
</MasterTableView><BR>                                
<FilterMenu 
EnableImageSprites="False"><BR>                                
</FilterMenu><BR>                                
<HeaderContextMenu CssClass="GridContextMenu 
GridContextMenu_Default"><BR>                                
</HeaderContextMenu><BR>                            
</telerik:RadGrid><BR>                        
</ContentTemplate><BR>                    
</telerik:RadPanelItem><BR>                    
<telerik:RadPanelItem runat="server" Text="Script Details" Expanded="true" 
Width="100%"><BR>                        
<ContentTemplate><BR>                            
<!--Tab 
Strip--><BR>                            
<table 
width="100%"><BR>                                
<tr><BR>                                    
<td 
width="50%"><BR>                                        
<telerik:RadTabStrip ID="RadTabStrip1" MultiPageID="RadMultiPage1" 
runat="server"<BR>                                            
Skin="WebBlue" 
SelectedIndex="1"><BR>                                            
<Tabs><BR>                                                
<telerik:RadTab runat="server" Text="Details" 
Selected="true"><BR>                                                
</telerik:RadTab><BR>                                                
<telerik:RadTab runat="server" 
Text="Comments"><BR>                                                
</telerik:RadTab><BR>                                            
</Tabs><BR>                                        
</telerik:RadTabStrip><BR>                                    
</td><BR>                                    
<td 
align="right"><BR>                                        
<telerik:RadButton ID="btnSave" Skin="WebBlue" runat="server" 
OnClick="btnSaveScript_Click"<BR>                                            
ValidationGroup="valGroup1" 
Text="Save"><BR>                                        
</telerik:RadButton><BR>                                        
<telerik:RadButton ID="btnDelete" Skin="WebBlue" runat="server" 
OnClick="btnDeleteScript_Click"<BR>                                            
Text="Delete"><BR>                                        
</telerik:RadButton><BR>                                        
<telerik:RadButton ID="btnResetScript" Skin="WebBlue" runat="server" 
OnClick="btnResetScript_Click"<BR>                                            
Text="Reset"><BR>                                        
</telerik:RadButton><BR>                                        
<telerik:RadButton ID="btnPrintPreview" Skin="WebBlue" runat="server" 
OnClick="btnPrintPreviewScript_Click"<BR>                                            
Text="Print 
Preview"><BR>                                        
</telerik:RadButton><BR>                                        
<telerik:RadButton ID="btnPrint" Skin="WebBlue" runat="server" 
OnClick="btnPrintScript_Click"<BR>                                            
Text="Print"><BR>                                        
</telerik:RadButton><BR>                                    
</td><BR>                                
</tr><BR>                            
</table><BR>                            
<telerik:RadMultiPage ID="RadMultiPage1" runat="server" 
CssClass="form"><BR>                                
<telerik:RadPageView ID="RadPageView1" runat="server" Selected="true" 
CssClass="form"<BR>                                    
BorderColor="#2E9AFE" 
BorderWidth="1"><BR>                                    
<table width="90%" class="form" border="0" 
cellpadding="3"><BR>                                        
<tr><BR>                                            
<td valign="top" align="right" 
width="100px"><BR>                                                
<asp:Label ID="Label1" runat="server" CssClass="formLabel" 
Text="Title"></asp:Label><BR>                                            
</td><BR>                                            
<td colspan="5" 
align="left"><BR>                                                
<asp:TextBox ID="txtTitle" runat="server" CssClass="textFields" 
Width="575px"></asp:TextBox><BR>                                                
<asp:RequiredFieldValidator ID="valTitle" runat="server" 
ControlToValidate="txtTitle"<BR>                                                    
Display="None" ErrorMessage="Title is a required field." 
ValidationGroup="valGroup1"></asp:RequiredFieldValidator><BR>                                                
<asp:ValidatorCalloutExtender ID="ValidatorCalloutExtender1" runat="server" 
Enabled="True"<BR>                                                    
TargetControlID="valTitle" 
/><BR>                                                
<telerik:RadWindowManager ID="RadWindowManager" runat="server" 
DestroyOnClose="True"<BR>                                                    
RestrictionZoneID="RestrictionZone"><BR>                                                    
<Windows><BR>                                                        
<telerik:RadWindow ID="radWindowDetailPrint" runat="server" 
VisibleOnPageLoad="false"><BR>                                                        
</telerik:RadWindow><BR>                                                        
<telerik:RadWindow ID="radWindowSelectionPrint" runat="server" 
VisibleOnPageLoad="false"><BR>                                                        
</telerik:RadWindow><BR>                                                        
<telerik:RadWindow ID="radWindowEditSynopsis" runat="server" 
VisibleOnPageLoad="false"><BR>                                                            
<ContentTemplate><BR>                                                                
<table 
class="searchForm"><BR>                                                                    
<tr><BR>                                                                        
<td 
class="formHeader"><BR>                                                                            
Synopsis<BR>                                                                        
</td><BR>                                                                    
</tr><BR>                                                                    
<tr><BR>                                                                        
<td><BR>                                                                            
<asp:TextBox ID="txtSynopsisPopup" runat="server" Rows="20" 
TextMode="MultiLine"<BR>                                                                                
CssClass="textFields" 
Width="595px"></asp:TextBox><BR>                                                                        
</td><BR>                                                                    
</tr><BR>                                                                    
<tr><BR>                                                                        
<td 
align="right"><BR>                                                                            
<asp:Button ID="btnUpdateSynopsis" runat="server" 
OnClick="btnUpdateSynopsis_Click"<BR>                                                                                
Text="Update" Visible="True" 
/><BR>                                                                        
</td><BR>                                                                    
</tr><BR>                                                                
</table><BR>                                                            
</ContentTemplate><BR>                                                        
</telerik:RadWindow><BR>                                                    
</Windows><BR>                                                
</telerik:RadWindowManager><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td class="formLabel" width="100px" 
align="right"><BR>                                                
Authors<BR>                                            
</td><BR>                                            
<td class="formLabel" 
width="250px"><BR>                                                
<asp:TextBox ID="txtAuthors" runat="server" Width="200px" 
CssClass="textFields"></asp:TextBox><BR>                                            
</td><BR>                                            
<td class="formLabel" width="150px" 
align="right"><BR>                                                
Type of 
Material<BR>                                            
</td><BR>                                            
<td class="formLabel" 
width="250px"><BR>                                                
<telerik:RadComboBox ID="cboMaterials" runat="server" Width="180px" 
EmptyMessage="Type to 
Select..."<BR>                                                    
MarkFirstMatch="true" 
Skin="WebBlue"><BR>                                                
</telerik:RadComboBox><BR>                                            
</td><BR>                                            
<td class="formLabel" align="right" 
width="175px"><BR>                                                
Number of 
Pages<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtNumberOfPages" runat="server" CssClass="textFields" 
Width="175px"></asp:TextBox><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Publisher<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtPublisher" runat="server" CssClass="textFields" 
Width="200px"></asp:TextBox><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Year 
Published<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtYearPublished" runat="server" Width="175px" 
CssClass="textFields"></asp:TextBox><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Draft<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtDraft" runat="server" CssClass="textFields" 
Width="175px"></asp:TextBox><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Analyst<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtAnalyst" runat="server" CssClass="textFields" 
Width="200px"></asp:TextBox><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Coverage 
Date<BR>                                            
</td><BR>                                            
<td><BR>                                                
<telerik:RadDatePicker ID="txtCoverageDate" runat="server" Skin="WebBlue" 
Width="205px"><BR>                                                    
<Calendar runat="server" Skin="Outlook" UseColumnHeadersAsSelectors="False" 
UseRowHeadersAsSelectors="False"<BR>                                                        
ViewSelectorText="x"><BR>                                                    
</Calendar><BR>                                                    
<DateInput runat="server" DateFormat="M/d/yyyy" 
DisplayDateFormat="M/d/yyyy"><BR>                                                    
</DateInput><BR>                                                    
<DatePopupButton HoverImageUrl="" ImageUrl="" 
/><BR>                                                
</telerik:RadDatePicker><BR>                                                
<asp:RequiredFieldValidator ID="valCoverageDate" ForeColor="Red" 
runat="server" 
ControlToValidate="txtCoverageDate"<BR>                                                    
Display="None" ErrorMessage="&lt;b&gt;Coverage Date is 
required&lt;/b&gt;" ValidationGroup="valGroup1" 
/><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Received 
Date<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<telerik:RadDatePicker ID="txtReceivedDate" Width="205px" runat="server" 
Skin="WebBlue"><BR>                                                    
<Calendar runat="server" Skin="WebBlue" UseColumnHeadersAsSelectors="False" 
UseRowHeadersAsSelectors="False"<BR>                                                        
ViewSelectorText="x"><BR>                                                    
</Calendar><BR>                                                    
<DateInput runat="server" DateFormat="M/d/yyyy" 
DisplayDateFormat="M/d/yyyy"><BR>                                                    
</DateInput><BR>                                                    
<DatePopupButton HoverImageUrl="" ImageUrl="" 
/><BR>                                                
</telerik:RadDatePicker><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Submitted 
By<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtSubmittedBy" runat="server" 
Width="200px"></asp:TextBox><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Circa<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtCirca" runat="server" 
Width="175px"></asp:TextBox><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Date 
Returned<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<telerik:RadDatePicker ID="txtReturnDate" Width="205px" runat="server" 
Skin="WebBlue"><BR>                                                    
<Calendar runat="server" Skin="WebBlue" UseColumnHeadersAsSelectors="False" 
UseRowHeadersAsSelectors="False"<BR>                                                        
ViewSelectorText="x"><BR>                                                    
</Calendar><BR>                                                    
<DateInput runat="server" DateFormat="M/d/yyyy" 
DisplayDateFormat="M/d/yyyy"><BR>                                                    
</DateInput><BR>                                                    
<DatePopupButton HoverImageUrl="" ImageUrl="" 
/><BR>                                                
</telerik:RadDatePicker><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Submitted 
To<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtSubmittedTo" runat="server" Width="200px" 
CssClass="textFields"></asp:TextBox><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Location<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtLocation0" runat="server" CssClass="textFields" 
Width="175px"></asp:TextBox><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Elements<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtElements0" runat="server" CssClass="textFields" 
Width="175px"></asp:TextBox><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td align="right" valign="top" 
class="formLabel"><BR>                                                
Genre<BR>                                            
</td><BR>                                            
<td 
valign="top"><BR>                                                
<telerik:RadComboBox ID="ddlGenre" runat="server" AutoPostBack="True" 
EmptyMessage="Type to 
Search"<BR>                                                    
MarkFirstMatch="true" 
OnSelectedIndexChanged="ddlGenre_SelectedIndexChanged"<BR>                                                    
Skin="WebBlue" 
Width="202px"><BR>                                                
</telerik:RadComboBox><BR>                                                
<br 
/><BR>                                                
<asp:LinkButton ID="lbDeleteGenre" runat="server" 
OnClick="lbDeleteGenre_Click">Remove 
Genre</asp:LinkButton><BR>                                                
<br 
/><BR>                                                
<asp:ListBox ID="lstGenre" runat="server" CssClass="textFields" 
SelectionMode="Multiple"<BR>                                                    
Width="200px"></asp:ListBox><BR>                                            
</td><BR>                                            
<td class="formLabel" align="right" 
valign="top"><BR>                                                
Sub-Genre<BR>                                            
</td><BR>                                            
<td align="left" 
class="formLabel"><BR>                                                
<telerik:RadComboBox ID="ddlSubGenre" runat="server" AutoPostBack="True" 
EmptyMessage="Type to 
Search"<BR>                                                    
MarkFirstMatch="true" 
OnSelectedIndexChanged="ddlSubGenre_SelectedIndexChanged"<BR>                                                    
Skin="WebBlue" 
Width="180px"><BR>                                                
</telerik:RadComboBox><BR>                                                
<br 
/><BR>                                                
<asp:LinkButton ID="lbDeleteSubgenre" runat="server" 
OnClick="lbDeleteSubgenre_Click">Remove 
Subgenre</asp:LinkButton><BR>                                                
<br 
/><BR>                                                
<asp:ListBox ID="lstSubGenre" runat="server" CssClass="textFields" 
SelectionMode="Multiple"<BR>                                                    
Width="175px"></asp:ListBox><BR>                                            
</td><BR>                                            
<td align="right" class="formLabel" 
valign="top"><BR>                                                
Keywords<BR>                                            
</td><BR>                                            
<td><BR>                                                
<telerik:RadComboBox ID="ddlKeywords" runat="server" AutoPostBack="True" 
EmptyMessage="Type to 
Search"<BR>                                                    
MarkFirstMatch="true" 
OnSelectedIndexChanged="ddlKeywords_SelectedIndexChanged"<BR>                                                    
Skin="WebBlue" 
Width="180px"><BR>                                                
</telerik:RadComboBox><BR>                                                
<br 
/><BR>                                                
<asp:LinkButton ID="LinkButton1" runat="server" 
OnClick="lbDeleteKeywords_Click">Remove 
Keywords</asp:LinkButton><BR>                                                
<br 
/><BR>                                                
<asp:ListBox ID="lstKeywords" runat="server" CssClass="textFields" 
SelectionMode="Multiple"<BR>                                                    
Width="175px"></asp:ListBox><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td 
class="formLabel"><BR>                                                
&nbsp;<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
&nbsp;<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
&nbsp;<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:CheckBox ID="ckConfidential0" runat="server" Text="Confidential" 
/><BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
&nbsp;<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:CheckBox ID="ckDevelopment0" runat="server" Text="Development" 
/><BR>                                            
</td><BR>                                        
</tr><BR>                                    
</table><BR>                                    
<table width="100%" cellpadding="3" 
class="form"><BR>                                        
<tr><BR>                                            
<td align="right" valign="top" class="formLabel" 
width="100px"><BR>                                                
Log 
Line<BR>                                            
</td><BR>                                            
<td 
colspan="5"><BR>                                                
<asp:TextBox ID="txtLogline" runat="server" CssClass="textFields" Rows="2" 
TextMode="MultiLine"<BR>                                                    
Width="99%"></asp:TextBox><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td><BR>                                                
&nbsp;<BR>                                            
</td><BR>                                            
<td><BR>                                                
&nbsp;<BR>                                            
</td><BR>                                            
<td><BR>                                                
&nbsp;<BR>                                            
</td><BR>                                            
<td><BR>                                            
</td><BR>                                            
<td><BR>                                                
&nbsp;<BR>                                            
</td><BR>                                            
<td 
align="right"><BR>                                                
<asp:LinkButton ID="lnkShowSynopsisPopup" runat="server" 
OnClick="lnkShowSynopsisPopup_Click"<BR>                                                    
Style="text-decoration: none" 
TabIndex="100">Edit</asp:LinkButton>&nbsp;&nbsp;<BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td align="right" valign="top" 
class="formLabel"><BR>                                                
Synopsis<BR>                                            
</td><BR>                                            
<td 
colspan="5"><BR>                                                
<asp:TextBox ID="txtSynopsis" runat="server" AutoPostBack="true" 
CssClass="textFields"<BR>                                                    
OnTextChanged="txtSynopsis_TextChanged" Rows="4" TabIndex="99" 
TextMode="MultiLine"<BR>                                                    
Width="99%"></asp:TextBox><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td align="right" 
valign="top"><BR>                                                
&nbsp;<BR>                                            
</td><BR>                                            
<td align="right" colspan="5" 
valign="top"><BR>                                            
</td><BR>                                        
</tr><BR>                                    
</table><BR>                                    
<asp:ModalPopupExtender ID="ModalPopupExtender2" runat="server" 
TargetControlID="btnDelete"<BR>                                        
PopupControlID="panelDeleteScriptOuter" OkControlID="ButtonOk" 
CancelControlID="ButtonCancel"<BR>                                        
BackgroundCssClass="modalBackground" Enabled="True" DynamicServicePath="" 
/><BR>                                    
<asp:ConfirmButtonExtender ID="ConfirmButtonExtender2" runat="server" 
TargetControlID="btnDelete"<BR>                                        
DisplayModalPopupID="ModalPopupExtender2" ConfirmText="" Enabled="True" 
/><BR>                                    
<!--DELETE 
CONFIRM--><BR>                                    
<asp:Panel ID="panelDeleteScriptOuter" runat="server" 
CssClass="DeleteConfirmationOuterWindow"<BR>                                        
Style="display: 
none;"><BR>                                        
<asp:Panel ID="panelDeleteScript" runat="server" Width="200px" Height="75px" 
CssClass="DeleteConfirmWindow"><BR>                                            
<table 
width="100%"><BR>                                                
<tr><BR>                                                    
<td 
align="center"><BR>                                                        
Are you sure you want to Delete this 
Script?<BR>                                                    
</td><BR>                                                
</tr><BR>                                                
<tr><BR>                                                    
<td 
align="center"><BR>                                                        
<asp:Button ID="ButtonOk" runat="server" Text="Ok" 
/><BR>                                                        
<asp:Button ID="ButtonCancel" runat="server" Text="Cancel" 
/><BR>                                                    
</td><BR>                                                
</tr><BR>                                            
</table><BR>                                        
</asp:Panel><BR>                                    
</asp:Panel><BR>                                
</telerik:RadPageView><BR>                                
<!--SCRIPT 
DETAILS---><BR>                                
<telerik:RadPageView ID="RadPageView2" runat="server" BorderColor="#2E9AFE" 
CssClass="form"<BR>                                    
BorderWidth="1"><BR>                                    
<table border="0" class="form" 
cellpadding="3"><BR>                                        
<tr><BR>                                            
<td width="150px" 
class="formLabel-RightAlign"><BR>                                                
Idea<BR>                                            
</td><BR>                                            
<td width="250px" 
class="formLabel"><BR>                                                
<telerik:RadSlider ID="radslideIdea" runat="server" CssClass="ItemSlider" 
Height="30px"<BR>                                                    
ItemType="Item" MaximumValue="5" MinimumValue="1" Skin="WebBlue" 
Width="250px"><BR>                                                    
<Items><BR>                                                        
<telerik:RadSliderItem Text="Exc." Value="1" 
/><BR>                                                        
<telerik:RadSliderItem Text="Good" Value="2" 
/><BR>                                                        
<telerik:RadSliderItem Text="Fair" Value="3" 
/><BR>                                                        
<telerik:RadSliderItem Text="Poor" Value="4" 
/><BR>                                                        
<telerik:RadSliderItem Text="N/A" Value="5" 
/><BR>                                                    
</Items><BR>                                                
</telerik:RadSlider><BR>                                            
</td><BR>                                            
<td class="formLabel" align="right" 
width="100px"><BR>                                                
Material<BR>                                            
</td><BR>                                            
<td><BR>                                                
<telerik:RadComboBox ID="cboMaterial" runat="server" Skin="WebBlue" 
MarkFirstMatch="true"<BR>                                                    
EmptyMessage="Type to 
Select..."><BR>                                                    
<Items><BR>                                                        
<telerik:RadComboBoxItem Value="1" Text="Pass" 
/><BR>                                                        
<telerik:RadComboBoxItem Value="2" Text="Consider" 
/><BR>                                                        
<telerik:RadComboBoxItem Value="3" Text="Recommend" 
/><BR>                                                        
<telerik:RadComboBoxItem Value="4" Text="N/A" 
/><BR>                                                    
</Items><BR>                                                
</telerik:RadComboBox><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td align="right" width="150px" 
class="formLabel"><BR>                                                
Story 
Line<BR>                                            
</td><BR>                                            
<td 
align="left"><BR>                                                
<telerik:RadSlider ID="radSlideStoryLine" runat="server" 
CssClass="ItemSlider" 
Height="30px"<BR>                                                    
ItemType="Item" MaximumValue="5" MinimumValue="1" Skin="WebBlue" 
Width="250px"><BR>                                                    
<Items><BR>                                                        
<telerik:RadSliderItem Text="Exc." Value="1" 
/><BR>                                                        
<telerik:RadSliderItem Text="Good" Value="2" 
/><BR>                                                        
<telerik:RadSliderItem Text="Fair" Value="3" 
/><BR>                                                        
<telerik:RadSliderItem Text="Poor" Value="4" 
/><BR>                                                        
<telerik:RadSliderItem Text="N/A" Value="5" 
/><BR>                                                    
</Items><BR>                                                
</telerik:RadSlider><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Writer<BR>                                            
</td><BR>                                            
<td><BR>                                                
<telerik:RadComboBox ID="cboWriter" runat="server" Skin="WebBlue" 
MarkFirstMatch="true"<BR>                                                    
EmptyMessage="Type to 
Select..."><BR>                                                    
<Items><BR>                                                        
<telerik:RadComboBoxItem Value="1" Text="Pass" 
/><BR>                                                        
<telerik:RadComboBoxItem Value="2" Text="Consider" 
/><BR>                                                        
<telerik:RadComboBoxItem Value="3" Text="Recommend" 
/><BR>                                                        
<telerik:RadComboBoxItem Value="4" Text="N/A" 
/><BR>                                                    
</Items><BR>                                                
</telerik:RadComboBox><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td align="right" 
class="formLabel"><BR>                                                
Characterization<BR>                                            
</td><BR>                                            
<td 
align="left"><BR>                                                
<telerik:RadSlider ID="radSlideCharacterization" runat="server" 
CssClass="ItemSlider"<BR>                                                    
Height="30px" ItemType="Item" MaximumValue="5" MinimumValue="1" 
Skin="WebBlue"<BR>                                                    
Width="250px"><BR>                                                    
<Items><BR>                                                        
<telerik:RadSliderItem Text="Exc." Value="1" 
/><BR>                                                        
<telerik:RadSliderItem Text="Good" Value="2" 
/><BR>                                                        
<telerik:RadSliderItem Text="Fair" Value="3" 
/><BR>                                                        
<telerik:RadSliderItem Text="Poor" Value="4" 
/><BR>                                                        
<telerik:RadSliderItem Text="N/A" Value="5" 
/><BR>                                                    
</Items><BR>                                                
</telerik:RadSlider><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Concept<BR>                                            
</td><BR>                                            
<td><BR>                                                
<telerik:RadComboBox ID="cboConcept" runat="server" Skin="WebBlue" 
MarkFirstMatch="true"<BR>                                                    
EmptyMessage="Type to 
Select..."><BR>                                                    
<Items><BR>                                                        
<telerik:RadComboBoxItem Value="1" Text="Pass" 
/><BR>                                                        
<telerik:RadComboBoxItem Value="2" Text="Consider" 
/><BR>                                                        
<telerik:RadComboBoxItem Value="3" Text="Recommend" 
/><BR>                                                        
<telerik:RadComboBoxItem Value="4" Text="N/A" 
/><BR>                                                    
</Items><BR>                                                
</telerik:RadComboBox><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td align="right" 
class="formLabel"><BR>                                                
Dialogue<BR>                                            
</td><BR>                                            
<td 
align="left"><BR>                                                
<telerik:RadSlider ID="radSlideDialog" ItemType="Item" runat="server" 
Skin="WebBlue"<BR>                                                    
Width="250px" Height="30px" MaximumValue="5" MinimumValue="1" 
CssClass="ItemSlider"><BR>                                                    
<Items><BR>                                                        
<telerik:RadSliderItem Text="Exc." Value="1" 
/><BR>                                                        
<telerik:RadSliderItem Text="Good" Value="2" 
/><BR>                                                        
<telerik:RadSliderItem Text="Fair" Value="3" 
/><BR>                                                        
<telerik:RadSliderItem Text="Poor" Value="4" 
/><BR>                                                        
<telerik:RadSliderItem Text="N/A" Value="5" 
/><BR>                                                    
</Items><BR>                                                
</telerik:RadSlider><BR>                                            
</td><BR>                                            
<td class="formLabel" 
align="right"><BR>                                                
Budget<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:RadioButton ID="radioBudgetHigh" runat="server" 
GroupName="radioBudgetGroup"<BR>                                                    
Text="High" 
/><BR>                                                
<asp:RadioButton ID="radioBudgetMedium" runat="server" 
GroupName="radioBudgetGroup"<BR>                                                    
Text="Medium" 
/><BR>                                                
<asp:RadioButton ID="radioBudgetLow" runat="server" 
GroupName="radioBudgetGroup"<BR>                                                    
Text="Low" 
/><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td align="right" 
class="formLabel"><BR>                                                
Setting/Production 
Values<BR>                                            
</td><BR>                                            
<td 
align="left"><BR>                                                
<telerik:RadSlider ID="radSlideProductionSettings" runat="server" 
CssClass="ItemSlider"<BR>                                                    
Height="30px" ItemType="Item" MaximumValue="5" MinimumValue="1" 
Skin="WebBlue"<BR>                                                    
Width="250px"><BR>                                                    
<Items><BR>                                                        
<telerik:RadSliderItem Text="Exc." Value="1" 
/><BR>                                                        
<telerik:RadSliderItem Text="Good" Value="2" 
/><BR>                                                        
<telerik:RadSliderItem Text="Fair" Value="3" 
/><BR>                                                        
<telerik:RadSliderItem Text="Poor" Value="4" 
/><BR>                                                        
<telerik:RadSliderItem Text="N/A" Value="5" 
/><BR>                                                    
</Items><BR>                                                
</telerik:RadSlider><BR>                                            
</td><BR>                                            
<td><BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                            
</td><BR>                                        
</tr><BR>                                    
</table><BR>                                    
<table width="100%" 
cellpadding="3"><BR>                                        
<tr><BR>                                            
<td class="formLabel" align="right" valign="top" 
width="150px"><BR>                                                
Logline 
Comment<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtLoglineComment" runat="server" CssClass="textFields" 
Rows="6"<BR>                                                    
TextMode="MultiLine" 
Width="95%"></asp:TextBox><BR>                                            
</td><BR>                                        
</tr><BR>                                        
<tr><BR>                                            
<td class="formLabel" valign="top" 
align="right"><BR>                                                
Comment<BR>                                            
</td><BR>                                            
<td 
class="formLabel"><BR>                                                
<asp:TextBox ID="txtComment" runat="server" CssClass="textFields" Rows="8" 
TextMode="MultiLine"<BR>                                                    
Width="95%"></asp:TextBox><BR>                                            
</td><BR>                                        
</tr><BR>                                    
</table><BR>                                
</telerik:RadPageView><BR>                            
</telerik:RadMultiPage><BR>                        
</ContentTemplate><BR>                    
</telerik:RadPanelItem><BR>                
</Items><BR>            
</telerik:RadPanelBar><BR>            
</asp:Panel><BR>        
</telerik:RadPane><BR>        
<telerik:RadPane ID="SearchPane" runat="server" Height="100%" Width="23px" 
><BR>           
<telerik:RadSlidingZone ID="RadSlidingZone1" runat="server" 
SlideDirection="Left" 
><BR>               
<telerik:RadSlidingPane ID="RadSlidingPane1" EnableDock="false" 
runat="server" Width="250px" Title="Search" Scrolling="Y" 
><BR>                   
<asp:Panel ID="Panel1" 
runat="server"><BR>                       
<table class="searchForm" 
width="100%"><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Title<BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
<asp:TextBox ID="txtTitleSearch" CssClass="textFields" runat="server" 
TabIndex="0"<BR>                                       
Width="200px"></asp:TextBox><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Author<BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
<asp:TextBox ID="txtAuthorSearch" CssClass="textFields" runat="server" 
Width="200px"></asp:TextBox><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Submitted By<br 
/><BR>                                   
<asp:TextBox ID="txtSubmittedBySearch" CssClass="textFields" runat="server" 
Width="200px"></asp:TextBox><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Submitted To<br 
/><BR>                                   
<telerik:RadComboBox ID="cboSubmittedToSearch" Skin="WebBlue" 
MarkFirstMatch="true"<BR>                                       
EmptyMessage="Type to Search..." runat="server" 
Width="205px"><BR>                                   
</telerik:RadComboBox><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Analyst<br 
/><BR>                                   
<telerik:RadComboBox ID="cboAnalystSearch" Skin="WebBlue" 
EnableAutomaticLoadOnDemand="true"<BR>                                       
MarkFirstMatch="true" EmptyMessage="Type to Search..." runat="server" 
Width="205px"><BR>                                       
<WebServiceSettings Path="../Admin/Controls/AdminService.asmx" 
Method="GetAnalysts" 
/><BR>                                   
</telerik:RadComboBox><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Elements<br 
/><BR>                                   
<asp:TextBox ID="txtElementsSearch" CssClass="textFields" runat="server" 
Width="200px"></asp:TextBox><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Log Line (Slow)<br 
/><BR>                                   
<asp:TextBox ID="txtLogLineSearch" CssClass="textFields" runat="server" 
Width="200px"></asp:TextBox><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Division<BR>                                   
<asp:CheckBox ID="ckDivisionDT" runat="server" Text="DT" Checked="true" 
/><BR>                                   
<asp:CheckBox ID="ckDivisionMX" runat="server" Text="MX" 
/><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
align="right"><BR>                                   
<telerik:RadButton ID="btnSearch1" runat="server" Skin="WebBlue" 
Text="Search" 
OnClick="btnSearch_Click"><BR>                                   
</telerik:RadButton><BR>                                   
<telerik:RadButton ID="btnReset2" runat="server" Skin="WebBlue" Text="Reset" 
OnClick="btnResetSearch_Click"><BR>                                   
</telerik:RadButton><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
align="left"><BR>                                   
<table><BR>                                       
<tr><BR>                                           
<td colspan="2" 
class="searchSectionLabel"><BR>                                               
Coverage 
Date<BR>                                           
</td><BR>                                       
</tr><BR>                                       
<tr><BR>                                           
<td 
class="searchSectionLabel"><BR>                                               
Start 
Date<BR>                                           
</td><BR>                                       
</tr><BR>                                       
<tr><BR>                                           
<td 
class="searchSectionLabel"><BR>                                               
<telerik:RadDatePicker ID="txtCoverageStartDate" Skin="WebBlue" 
runat="server" 
z-index="0"><BR>                                               
</telerik:RadDatePicker><BR>                                           
</td><BR>                                       
</tr><BR>                                       
<tr><BR>                                           
<td 
class="searchSectionLabel"><BR>                                               
End 
Date<BR>                                           
</td><BR>                                       
</tr><BR>                                       
<tr><BR>                                           
<td 
class="searchSectionLabel"><BR>                                               
<telerik:RadDatePicker ID="txtCoverageEndDate" Skin="WebBlue" runat="server" 
z-index="0"><BR>                                               
</telerik:RadDatePicker><BR>                                           
</td><BR>                                       
</tr><BR>                                   
</table><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td align="left" valign="top" 
class="searchSectionLabel"><BR>                                   
Genre &nbsp; 
&nbsp;<BR>                                   
<asp:Image ID="imgGenreSearch" runat="server" ImageUrl="~/Images/Search.gif" 
Visible="false" 
/><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
<asp:ListBox ID="lstGenreSearch" CssClass="textFields" 
SelectionMode="Multiple" 
runat="server"<BR>                                       
Width="200px" OnSelectedIndexChanged="SearchListBox_SelectedIndexChanged" 
AutoPostBack="true"><BR>                                   
</asp:ListBox><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td colspan="2" 
class="searchSectionLabel"><BR>                                   
Recommendation<BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Material<BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
<asp:DropDownList ID="ddlRecommendationMaterial" CssClass="textFields" 
runat="server"<BR>                                       
Width="200px"><BR>                                       
<asp:ListItem Value="0" 
Text=""></asp:ListItem><BR>                                       
<asp:ListItem 
Value="1">Pass</asp:ListItem><BR>                                       
<asp:ListItem 
Value="2">Consider</asp:ListItem><BR>                                       
<asp:ListItem 
Value="3">Recommend</asp:ListItem><BR>                                       
<asp:ListItem 
Value="4">N/A</asp:ListItem><BR>                                   
</asp:DropDownList><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Writer<BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
<asp:DropDownList ID="ddlRecommendationWriter" CssClass="textFields" 
runat="server"<BR>                                       
Width="200px"><BR>                                       
<asp:ListItem Value="0" 
Text=""></asp:ListItem><BR>                                       
<asp:ListItem 
Value="1">Pass</asp:ListItem><BR>                                       
<asp:ListItem 
Value="2">Consider</asp:ListItem><BR>                                       
<asp:ListItem 
Value="3">Recommend</asp:ListItem><BR>                                       
<asp:ListItem 
Value="4">N/A</asp:ListItem><BR>                                   
</asp:DropDownList><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Keyword &nbsp; 
&nbsp;<BR>                                   
<asp:Image ID="imgKeywordSearch" runat="server" 
ImageUrl="~/Images/Search.gif" Visible="false" 
/><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
<asp:ListBox ID="lstKeywordSearch" SelectionMode="Multiple" 
CssClass="textFields"<BR>                                       
runat="server" Width="200px" 
OnSelectedIndexChanged="SearchListBox_SelectedIndexChanged"<BR>                                       
AutoPostBack="true"></asp:ListBox><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
Notes<BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td 
class="searchSectionLabel"><BR>                                   
<asp:CheckBox ID="ckNotesPrivate" runat="server" Text="Private" /><br 
/><BR>                                   
<asp:CheckBox ID="ckNotesPublic" runat="server" Text="Public" /><br 
/><BR>                                   
<asp:CheckBox ID="ckNotesSysAdmin" runat="server" Text="System Administrator" 
/><BR>                               
</td><BR>                           
</tr><BR>                           
<tr><BR>                               
<td align="right" 
class="searchSectionLabel"><BR>                                   
<telerik:RadButton ID="btnSearch" Skin="WebBlue" runat="server" Text="Search" 
OnClick="btnSearch_Click"><BR>                                   
</telerik:RadButton><BR>                                   
<telerik:RadButton ID="btnReset" Skin="WebBlue" runat="server" Text="Reset" 
OnClick="btnResetSearch_Click"><BR>                                   
</telerik:RadButton><BR>                               
</td><BR>                           
</tr><BR>                       
</table><BR>                   
</asp:Panel><BR>               
</telerik:RadSlidingPane><BR>           
</telerik:RadSlidingZone><BR>       
</telerik:RadPane><BR>    
</telerik:RadSplitter><BR>    <BR>    
<!--=============== SEARCH PANEL 
========================================================--><BR>    
<BR>    <!--=============== END OF SEARCH PANEL 
=================================================--><BR>    
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" 
DefaultLoadingPanelID="RadAjaxLoadingPanel1"><BR>        
<AjaxSettings><BR>            
<telerik:AjaxSetting 
AjaxControlID="panelSearchResultsAndDetails"><BR>                
<UpdatedControls><BR>                    
<telerik:AjaxUpdatedControl ControlID="panelSearchResultsAndDetails" 
<BR>                        
LoadingPanelID="RadAjaxLoadingPanel1" UpdatePanelHeight="600px" 
/><BR>                
</UpdatedControls><BR>            
</telerik:AjaxSetting><BR>            
<telerik:AjaxSetting 
AjaxControlID="RadSlidingPane1"><BR>                
<UpdatedControls><BR>                    
<telerik:AjaxUpdatedControl ControlID="panelSearchResultsAndDetails" 
<BR>                        
LoadingPanelID="RadAjaxLoadingPanel1" UpdatePanelHeight="600px" 
/><BR>                
</UpdatedControls><BR>            
</telerik:AjaxSetting><BR>        
</AjaxSettings><BR>    
</telerik:RadAjaxManager><BR>    
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" 
Skin="WebBlue"><BR>    
</telerik:RadAjaxLoadingPanel></P>
Tsvetina
Telerik team
 answered on 22 Apr 2011
1 answer
66 views
I have a Hierarchal grid and in the child grid I have a template column with an imagebutton in it. When I press this button I need to get the value of a bound cell also in the child grid with the Uniquename "DocumentName" Can you give me an example of how to do this. Thanks
Daniel
Telerik team
 answered on 22 Apr 2011
2 answers
138 views
In My Form RadToolBarButton i have fix the


. i want to take two operation in  this fillter command
show and hide filter in one button

function showFilterItem() {
                $find('<%=RadGrid1.ClientID %>').get_masterTableView().showFilterItem()
            }
            function hideFilterItem(checked, eventArqs) {
                $find('<%=RadGrid1.ClientID %>').get_masterTableView().hideFilterItem();
            }
            function onToolBarClientButtonClicking(sender, args) {
                debugger;
                var comandName = args.get_item().get_commandName();
                if (comandName == "Filter") {
                    hideFilterItem();
                }
                else if (comandName == "Filter1") {
                    showFilterItem();
                }
            }

 <telerik:RadToolBar ID="RadToolBar1" runat="server" OnClientButtonClicking="onToolBarClientButtonClicking">
                        <Items>
                            <telerik:RadToolBarButton  Text="Filter" CommandName="Filter" ImageUrl="../../images/appfiltering.png">
                            </telerik:RadToolBarButton>
                            <telerik:RadToolBarButton Text="Print" CommandName="Print" onclick="PrintRadGrid()">
                            </telerik:RadToolBarButton>
                            <telerik:RadToolBarButton Text="Refresh" CommandName="RebindGrid" ImageUrl="../../images/Refresh.gif">
                            </telerik:RadToolBarButton>
                        </Items>
                    </telerik:RadToolBar>
mohamed
Top achievements
Rank 1
 answered on 22 Apr 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?