Hi,
I am following the EndlessPagedCollectionView example as that closely related to what i want to achieve.
The similarity is that i need to keep loading data in batch and i don't know when it will be done.
However, it isn't truly endless. When it comes to an end, and i am at the last page, how do i disable the NEXT button in the RadDataPager? I've tried setting ItemCount / TotalItemCount but i don't seem to be able to disable the Next button while i am at the last page.
Any help?
btw, what's the difference between ItemCount vs TotalItemCount?
-A
Hi,
I'm looking for a way to change the default docking of the minimized tiles. Changing the FlowDirection property from LeftToRight to RightToLeft almost works, but it causes all of the controls in the RadTileViewItems to be right justified instead of left justified.
Also, is there a way to hide the Minimize button in a RadTileViewItem?
Thanks,
Paul
Hi,
For instance I have to cut fragment from a document and paste it in another one. The fragment is AnnotationRange and it has others annotation elements inside. When I insert it GetRootDocument for parent element is not null (it's my document), but for children it is null.
How can I set my document as owner for all internal elements?
Thanks in advance.
[Display(Name = "Account")]
public string accnt { get; set;}
[DisplayFormat(DataFormatString="#,##0.0000")]
public double cnOpened { get; set; }
So I think I found an issue with tabbing between column headers, after the columns have been rearranged.
When changing column position (rearranging columns) on a rad grid, tabbing between headers does not follow the display index. In instead follows the original position of the column.
You can see this behavior on the "GridView Filtering Configuration" demo from the WPF controls examples Telerick tool.
Once you choose the Filtering Configuration demo\example, change the filtering mode to "FitlerRow". You can tab through the headers and the keyboard focus will go to each column properly (Customer ID, Company Name, Country, etc..)
If you move the Country column in between the Customer ID and Company Name. When starting at the Customer ID and tabbing, the tab order remains unchanged (Customer ID, Company Name, Country, etc..). When in fact it should go Customer ID, Country, Company Name, etc.
When selecting a row, the tab order works as expected.
I did some research, but was unable to find a way to work around this. Am I missing something.
Additionally, I was able to smooth out the tabbing (to reduce the number of tabs in the header), with the code below.
private void Grid_Loaded(object sender, RoutedEventArgs e)
{
foreach (var headerCell in AssociatedObject.ChildrenOfType<GridViewHeaderCell>())
{
//var popUp = headerCell.ChildrenOfType<Popup>().FirstOrDefault();
var filteringControl = headerCell.ChildrenOfType<FieldFilterControl>().FirstOrDefault();
if (filteringControl != null)
{
(filteringControl.ChildrenOfType<RadDropDownButton>().FirstOrDefault()).IsTabStop = false;
}
var contentControls = headerCell.ChildrenOfType<ContentControl>().Where( con => con.IsTabStop == true).ToList(); ;
foreach (var content in contentControls)
{
content.IsTabStop = false;
}
}
}
private void Grid_FieldFilterEditorCreated(object sender, EditorCreatedEventArgs e)
{
var stringFilterEditor = e.Editor as StringFilterEditor;
if (stringFilterEditor != null)
{
stringFilterEditor.MatchCaseVisibility = Visibility.Collapsed;
}
}
Thanks,
Cory
Hi,
I'm trying to build chart with real time data, where I display some values with a StepLineSeries, and this works fine. However, I want to display the Moving Average of those values as well, and for that I'm using the MovingAverageIndicator but it doesn't work.
If I display all the data at once the MovingAverageIndicator works just fine but, if I try to display it with the data being added in real time it doesn't work. Is this some limitation of the indicator or am I doing something wrong?
Best regards,
Diogo Duarte
Hi,
anyone can help me?
UCMasterAttendace.xaml
<telerik:RadGridView x:Name="gridMasterAttendancePattern"
Grid.Column="1"
Grid.ColumnSpan="7"
Grid.Row="3"
CanUserDeleteRows="False"
CanUserInsertRows="False"
CanUserReorderColumns="False"
CanUserResizeColumns="False"
CanUserSortColumns="False"
CanUserFreezeColumns="False"
Width="Auto"
Height="Auto"
AutoGenerateColumns="False"
RowIndicatorVisibility="Collapsed"
IsFilteringAllowed="False"
ShowGroupPanel="False"
SelectionUnit="Cell"
SelectionMode="Single"
Margin="5,0,0,0"
HorizontalContentAlignment="Center">
<telerik:RadGridView.Columns>
<telerik:GridViewComboBoxColumn DataMemberBinding="{Binding StatoItem}"
UniqueName="Stato"
SelectedValueMemberPath="IDStato"
DisplayMemberPath="NameStato"
ItemsSourceBinding="{Binding ListaStati, Mode=TwoWay}"
Width="100">
<telerik:GridViewComboBoxColumn.Header>
<TextBlock Text="{DynamicResource statusmasterattendance}" ToolTip="{DynamicResource statusmasterattendance}" HorizontalAlignment="Center" />
</telerik:GridViewComboBoxColumn.Header>
</telerik:GridViewComboBoxColumn>
<telerik:GridViewComboBoxColumn DataMemberBinding="{Binding DoorItem}"
UniqueName="Door"
SelectedValueMemberPath="IDDoor"
DisplayMemberPath="NameDoor"
ItemsSourceBinding="{Binding ListaDoor, Mode=TwoWay}"
Width="100">
<telerik:GridViewComboBoxColumn.Header>
<TextBlock Text="{DynamicResource connectmasterattendance}" ToolTip="{DynamicResource connectmasterattendance}" HorizontalAlignment="Center" />
</telerik:GridViewComboBoxColumn.Header>
</telerik:GridViewComboBoxColumn>
<telerik:GridViewComboBoxColumn DataMemberBinding="{Binding RuleItem}"
UniqueName="Rule"
SelectedValueMemberPath="IDRule"
DisplayMemberPath="NameRule"
ItemsSourceBinding="{Binding ListaRule, Mode=TwoWay}" Width="100">
<telerik:GridViewComboBoxColumn.Header>
<TextBlock Text="{DynamicResource rulemasterattendance}" ToolTip="{DynamicResource rulemasterattendance}" HorizontalAlignment="Center" />
</telerik:GridViewComboBoxColumn.Header>
</telerik:GridViewComboBoxColumn>
</telerik:RadGridView.Columns>
</telerik:RadGridView>
UCMaterAttendace.xaml.cs
public class MasterAttendance
{
public List<Stato> ListaStati { get; set; }
public int StatoItem { get; set; }
public List<Door> ListaDoor { get; set; }
public int DoorItem { get; set; }
public bool IsDoor1Programmed { get; set; }
public bool IsButton1Enabled { get; set; }
public bool IsDoor2Programmed { get; set; }
public bool IsButton2Enabled { get; set; }
public bool IsDoor3Programmed { get; set; }
public bool IsButton3Enabled { get; set; }
public bool IsDoor4Programmed { get; set; }
public bool IsButton4Enabled { get; set; }
public bool IsDoor5Programmed { get; set; }
public bool IsButton5Enabled { get; set; }
public bool IsDoor6Programmed { get; set; }
public bool IsButton6Enabled { get; set; }
public bool IsDoor7Programmed { get; set; }
public bool IsButton7Enabled { get; set; }
public bool IsDoor8Programmed { get; set; }
public bool IsButton8Enabled { get; set; }
public bool IsDoor9Programmed { get; set; }
public bool IsButton9Enabled { get; set; }
public bool IsDoor10Programmed { get; set; }
public bool IsButton10Enabled { get; set; }
public bool IsDoor11Programmed { get; set; }
public bool IsButton11Enabled { get; set; }
public bool IsDoor12Programmed { get; set; }
public bool IsButton12Enabled { get; set; }
public List<Rule> ListaRule { get; set; }
public int RuleItem { get; set; }
}
public class Stato
{
public int IDStato { get; set; }
public string NameStato { get; set; }
}
public class Door
{
public int IDDoor { get; set; }
public string NameDoor { get; set; }
}
public class Rule
{
public int IDRule { get; set; }
public string NameRule { get; set; }
}
private List<Stato> ListaStati { get; set; }
private List<Door> ListaDoor { get; set; }
private List<Rule> ListaRule { get; set; }
private List<MasterAttendance> ListaMasterAttendance { get; set; }
private void PopulateListaStati()
{
ListaStati = new List<Stato>();
for (int i = 0; i < 2; i++)
{
var item = new Stato();
item.IDStato = i;
switch (i)
{
case 0:
item.NameStato = this.FindResource("privacypatternstateinactive").ToString();
break;
case 1:
item.NameStato = this.FindResource("privacypatternstateactive").ToString();
break;
}
ListaStati.Add(item);
}
}
private void PopulateListaDoor()
{
ListaDoor = new List<Door>();
for (int i = 0; i < 13; i++)
{
var item = new Door();
item.IDDoor = i;
if (i == 0)
{
item.NameDoor = "";
}
else
{
item.NameDoor = "D" + i;
}
ListaDoor.Add(item);
}
}
private void PopulateListaRule()
{
ListaRule = new List<Rule>();
for (int i = 0; i < 2; i++)
{
var item = new Rule();
item.IDRule = i;
switch (i)
{
case 0:
item.NameRule = this.FindResource("privacypatternruleunlock").ToString();
break;
case 1:
item.NameRule = this.FindResource("privacypatternrulelock").ToString();
break;
}
ListaRule.Add(item);
}
}
private void PopulateGridPrivacyPattern()
{
for (int i = 0; i < 8; i++)
{
var item = new MasterAttendance();
item.IsButton1Enabled = true;
item.IsButton2Enabled = true;
item.IsButton3Enabled = true;
item.IsButton4Enabled = true;
item.IsButton5Enabled = true;
item.IsButton6Enabled = true;
item.IsButton7Enabled = true;
item.IsButton8Enabled = true;
item.IsButton9Enabled = true;
item.IsButton10Enabled = true;
item.IsButton11Enabled = true;
item.IsButton12Enabled = true;
item.ListaStati = ListaStati;
item.StatoItem = 0;
item.ListaDoor = ListaDoor;
item.DoorItem = 0;
item.ListaRule = ListaRule;
item.RuleItem = 0;
ListaMasterAttendance.Add(item);
}
gridMasterAttendancePattern.ItemsSource = ListaMasterAttendance;
}
Output in image
Thank you
Leonardo
Hi, since we have moved from the 'regular' binaries to the noxaml ones, I have discovered that the RadAutoCompleteBox is not behaving as before. In the control's style we set TextBoxStyle property to mainly force the CharacterCasing to upper and set a few other properties. With the 'regular' binaries all worked well as expected. But now, with the noxaml, the caret is not being displayed and neither is the Watermark, if I remove the TextBoxStyle both are displayed but the searchtext is in lower case which causes the search to fail to find the correct items. Can you confirm this on your side? We're using v2015.3.930.40 and targeting .net 4.0. I have a small sample app to demonstrate the issue if needed.
Thank you.