Reed
Reed
CC#
Created by Reed on 9/15/2023 in #help
❔ Filter entries showing Row ID instead of Actual value
No description
3 replies
CC#
Created by Reed on 9/5/2023 in #help
❔ Limit Free Format Textbox's input
I am having an issue with pasting e mail (outlook) text into my text box as there are characters my textbox can't interpret. This leads to error when saving. I realized using a Free Format Text box solved this issue but using FFT also allows for embedding of images, I was wondering how I could limit the FFT box to only allow text can someone help please?
5 replies
CC#
Created by Reed on 8/17/2023 in #help
❔ Reordering of columns: (DevExpress/XAML)
How should I go about switching the order of these columns? I tried the following but did not work: 1. Switch code order 2. Swapped the visibleIndex 3. 1+2 combined 4. Changed the visibleIndex in the XAML and the properties tab
<dxg:GridColumn VisibleIndex="3" x:Name="fftdtfr" Header="{Resx fftdtfr}" FieldName="fftdtfr" utils:AbsoluteVisibleColumn.IsEnable="False" Width="120" Visible="{Binding Visibility.fftdtfr, Mode=TwoWay}" AllowEditing="{Binding Accessibility.fftdtfr, Converter={converters:BoolToBooleanDefaultConverter}, Mode=OneWay}" IsEnabled="{Binding Accessibility.fftdtfr, Converter={converters:BoolToBooleanDefaultConverter}, Mode=OneWay}" FilterPopupMode="Date">
<dxg:GridColumn.EditSettings>
<dxe:DateEditSettings Mask="dd/MM/yyyy HH:mm" MaskType="DateTimeAdvancingCaret" MaskUseAsDisplayFormat="True" />
</dxg:GridColumn.EditSettings>
</dxg:GridColumn>
<dxg:GridColumn VisibleIndex="4" x:Name="fftdtto" Header="{Resx fftdtto}" FieldName="fftdtto" utils:AbsoluteVisibleColumn.IsEnable="False" Width="120" Visible="{Binding Visibility.fftdtto, Mode=TwoWay}" AllowEditing="{Binding Accessibility.fftdtto, Converter={converters:BoolToBooleanDefaultConverter}, Mode=OneWay}" IsEnabled="{Binding Accessibility.fftdtto, Converter={converters:BoolToBooleanDefaultConverter}, Mode=OneWay}" FilterPopupMode="Date">
<dxg:GridColumn.EditSettings>
<dxe:DateEditSettings Mask="dd/MM/yyyy HH:mm" MaskType="DateTimeAdvancingCaret" MaskUseAsDisplayFormat="True" />
</dxg:GridColumn.EditSettings>
</dxg:GridColumn>
<dxg:GridColumn VisibleIndex="3" x:Name="fftdtfr" Header="{Resx fftdtfr}" FieldName="fftdtfr" utils:AbsoluteVisibleColumn.IsEnable="False" Width="120" Visible="{Binding Visibility.fftdtfr, Mode=TwoWay}" AllowEditing="{Binding Accessibility.fftdtfr, Converter={converters:BoolToBooleanDefaultConverter}, Mode=OneWay}" IsEnabled="{Binding Accessibility.fftdtfr, Converter={converters:BoolToBooleanDefaultConverter}, Mode=OneWay}" FilterPopupMode="Date">
<dxg:GridColumn.EditSettings>
<dxe:DateEditSettings Mask="dd/MM/yyyy HH:mm" MaskType="DateTimeAdvancingCaret" MaskUseAsDisplayFormat="True" />
</dxg:GridColumn.EditSettings>
</dxg:GridColumn>
<dxg:GridColumn VisibleIndex="4" x:Name="fftdtto" Header="{Resx fftdtto}" FieldName="fftdtto" utils:AbsoluteVisibleColumn.IsEnable="False" Width="120" Visible="{Binding Visibility.fftdtto, Mode=TwoWay}" AllowEditing="{Binding Accessibility.fftdtto, Converter={converters:BoolToBooleanDefaultConverter}, Mode=OneWay}" IsEnabled="{Binding Accessibility.fftdtto, Converter={converters:BoolToBooleanDefaultConverter}, Mode=OneWay}" FilterPopupMode="Date">
<dxg:GridColumn.EditSettings>
<dxe:DateEditSettings Mask="dd/MM/yyyy HH:mm" MaskType="DateTimeAdvancingCaret" MaskUseAsDisplayFormat="True" />
</dxg:GridColumn.EditSettings>
</dxg:GridColumn>
6 replies
CC#
Created by Reed on 7/25/2023 in #help
❔ removing sensitive info (invalid post body)
I currently have the problem that when I make a post request with a body in which an attribute is of incorrect type (DateTime fileld with string). I get an error with too much detail. I want to make it more user readable.
18 replies