Mit Richtext Edit in der Zeiterfassung rumexperimentiert... wird für die Straffälligenhilfe benötigt

This commit is contained in:
2026-03-24 14:41:20 +01:00
parent 9ea2f29978
commit 9db6519824
4 changed files with 20 additions and 20 deletions

View File

@@ -653,7 +653,7 @@
BarManager="{Binding ElementName=barManager, Mode=OneTime}"
CommandBarStyle="Empty">
<dxre:RichEditControl.DocumentCapabilitiesOptions>
<dxre:DXRichEditDocumentCapabilitiesOptions FloatingObjects="Disabled" InlinePictures="Disabled" />
<dxre:DXRichEditDocumentCapabilitiesOptions FloatingObjects="Disabled" InlinePictures="Enabled" />
</dxre:RichEditControl.DocumentCapabilitiesOptions>
</dxre:RichEditControl>
</DockPanel>

View File

@@ -1850,7 +1850,7 @@
<dxre:DXRichEditBehaviorOptions Save="Disabled" SaveAs="Disabled" />
</dxre:RichEditControl.BehaviorOptions>
<dxre:RichEditControl.DocumentCapabilitiesOptions>
<dxre:DXRichEditDocumentCapabilitiesOptions FloatingObjects="Disabled" InlinePictures="Disabled" />
<dxre:DXRichEditDocumentCapabilitiesOptions FloatingObjects="Disabled" InlinePictures="Enabled" />
</dxre:RichEditControl.DocumentCapabilitiesOptions>
</dxre:RichEditControl>

View File

@@ -4857,26 +4857,26 @@ namespace BeWo.View.Detail.Zeiterfassung
private void RichEditControl2_OnContentChanged(object sender, EventArgs e)
{
ViewModel.PrototypeVM.Notice2 = richEditControl1.Text;
ViewModel.PrototypeVM.RTFNotice2 = richEditControl1.RtfText;
ViewModel.PrototypeVM.Notice2 = richEditControl2.Text;
ViewModel.PrototypeVM.RTFNotice2 = richEditControl2.RtfText;
}
private void RichEditControl3_OnContentChanged(object sender, EventArgs e)
{
ViewModel.PrototypeVM.Notice3 = richEditControl1.Text;
ViewModel.PrototypeVM.RTFNotice3 = richEditControl1.RtfText;
ViewModel.PrototypeVM.Notice3 = richEditControl3.Text;
ViewModel.PrototypeVM.RTFNotice3 = richEditControl3.RtfText;
}
private void RichEditControl4_OnContentChanged(object sender, EventArgs e)
{
ViewModel.PrototypeVM.Notice4 = richEditControl1.Text;
ViewModel.PrototypeVM.RTFNotice4 = richEditControl1.RtfText;
ViewModel.PrototypeVM.Notice4 = richEditControl4.Text;
ViewModel.PrototypeVM.RTFNotice4 = richEditControl4.RtfText;
}
private void RichEditControl5_OnContentChanged(object sender, EventArgs e)
{
ViewModel.PrototypeVM.Notice5 = richEditControl1.Text;
ViewModel.PrototypeVM.RTFNotice5 = richEditControl1.RtfText;
ViewModel.PrototypeVM.Notice5 = richEditControl5.Text;
ViewModel.PrototypeVM.RTFNotice5 = richEditControl5.RtfText;
}
private void ButtonBase_OnClick(object sender, RoutedEventArgs e)

View File

@@ -12,7 +12,7 @@
<property column="StartDate" type="DateTime" name="Start" />
<property column="EndDate" type="DateTime" name="End" />
<property column="IP" type="String" name="IP" length="128" />
<property column="Notice" type="String" name="Notice" length="1024" />
<property column="Notice" type="String" name="Notice" />
<property column="InsTs" type="DateTime" name="InsTs" />
<property column="InsUser" type="String" name="InsUser" length="256" />
<property column="UdpUser" type="String" name="UdpUser" length="256" />
@@ -32,17 +32,17 @@
<property column="IsCreatedInMobileClient" type="Boolean" name="IsCreatedInMobileClient" />
<property name="WohnheimbuchungsOid" column="WohnheimbuchungsOid" type="Int64" />
<property name="SignatureOid" column="SignatureOid" type="Int64" />
<property column="Notice2" type="String" name="Notice2" length="1024" />
<property column="Notice3" type="String" name="Notice3" length="1024" />
<property column="Notice4" type="String" name="Notice4" length="1024" />
<property column="Notice5" type="String" name="Notice5" length="1024" />
<property column="Notice2" type="String" name="Notice2" />
<property column="Notice3" type="String" name="Notice3" />
<property column="Notice4" type="String" name="Notice4" />
<property column="Notice5" type="String" name="Notice5" />
<property column="DurationInStunden" type="BS.Shared.ZeiterfassungsDauer, BS.Shared" name="DurationInStunden" />
<property column="ServiceRecordFormat" type="BS.Shared.ServiceRecordFormate, BS.Shared" name="ServiceRecordFormat" />
<property column="RTFNotice1" type="String" name="RTFNotice1" length="1024" />
<property column="RTFNotice2" type="String" name="RTFNotice2" length="1024" />
<property column="RTFNotice3" type="String" name="RTFNotice3" length="1024" />
<property column="RTFNotice4" type="String" name="RTFNotice4" length="1024" />
<property column="RTFNotice5" type="String" name="RTFNotice5" length="1024" />
<property column="RTFNotice1" type="String" name="RTFNotice1" />
<property column="RTFNotice2" type="String" name="RTFNotice2" />
<property column="RTFNotice3" type="String" name="RTFNotice3" />
<property column="RTFNotice4" type="String" name="RTFNotice4" />
<property column="RTFNotice5" type="String" name="RTFNotice5" />
<property column="Betrag" type="Decimal" name="Betrag" />
<many-to-one name="Group" column="GroupOid" class="BeWo.Data.Entities.ServiceRecordGroup,BeWo.Data" cascade="none" />