Category Archives: SharePoint উন্নয়ন

ItemStyle.xsl থেকে ব্রেকিং পরিবর্তনসমূহ হুঁশিয়ার

আমি দুপুরের খাবার সময় সম্পর্কে একটি বিষয়বস্তু প্রশ্নের ওয়েব পার্ট এবং ডান চেহারা কাস্টমাইজ ItemStyle.xsl সঙ্গে কাজ ছিল, I made a breaking change to the xsl. I didn’t realize it, but this had far reaching effects throughout the site collection. I went off to lunch and upon my return, এই বার্তা স্থানের একটি গুচ্ছ প্রদর্শনে লক্ষিত:

এই ওয়েব অংশ প্রদর্শন করতে অক্ষম. সমস্যা ট্রাবলশুট করুন, উইন্ডোজ SharePoint সেবা-সামঞ্জস্যপূর্ণ যেমন মাইক্রোসফট অফিস SharePoint ডিজাইনার হিসাবে এইচটিএমএল এডিটর ব্যবহার করে এই ওয়েব পৃষ্ঠা দেখুন. সমস্যাটি যদি চলতেই থাকে,, আপনার ওয়েব সার্ভার অ্যাডমিনিস্ট্রেটরের সাথে যোগাযোগ করুন.

আমি ক্লায়েন্ট অনুযু়ক্ত (এখনও যে এই সময়ে আমার দোষ ছিল বুঝতে না) but eventually noticed that visual studio intellisense was warning me that I had malformed XSL. I corrected it and everything started working.

Darned সতর্কতা অবলম্বন করা আবশ্যক ItemStyle.xsl সঙ্গে কাজ (এবং আন্তর্জাতিক XSL ফাইলের কোন) — তাদের ভঙ্গ সাইট সংগ্রহে অনেক ইত্যাদি প্রভাবিত.

<শেষ />

একটি গ্রিড সামগ্রীসমূহ প্রশ্নের ওয়েব পার্ট ফলাফল প্রদর্শন / টেবিল

সংক্ষিপ্ত বিবরণ এবং লক্ষ্য

বাক্সের বাইরে, শৈবাল’ বিষয়বস্তু প্রশ্নের ওয়েব পার্ট (CQWP) একটি তালিকা বিন্যাসে তার ফলাফল প্রদর্শন করা হয়, similar to search results. It is also possible to display the results in a grid format (I.E. HTML টেবিল বিন্যাসে). Grid formats are better in some circumstances. I describe how to achieve that effect in this article.

ব্যবসা দৃশ্যকল্প

I have worked with a client on an enterprise-wide MOSS rollout. We have designed their taxonomy such that projects are first class citizens in the hierarchy and have their own top level site. Project managers maintain a singleton list of project summary information, যেমন শিরোনামের, বাজেট, প্রত্যাশিত সমাপ্তির তারিখ, remaining budget and other summary type fields. By "singleton" I mean a custom SharePoint list guaranteed to contain only one item. Simplistically, এটা ভালো দেখায়:

ইমেজ

বর্ণনা অনুযায়ী প্রযুক্তিগত পদ্ধতির অনেক একই এখানে (http://paulgalvin.spaces.live.com/blog/cns!1CC1EDB3DAA9B8AA!447.entry). The CQWP uses an XSL transform to emit HTML for the browser to render.

I always envision the result before diving into the XSL because XSL is a nightmare. Here’s my desired result:

ইমেজ

ভালো এইচটিএমএল যে ফলে উত্পন্ন:

<HTML>
 <শরীর>
 <কেন্দ্র>
 <টেবিল সীমানা= 1>

<!-- লেবেল ->
 <tr bgcolor= নীল>
 <td><হয় রঙ= সাদা><বো>প্রকল্প নাম</বো></হয়></td>
 <td সারিবদ্ধ= অধিকার><হয় রঙ= সাদা><বো>জন্ম সমাপ্তি</বো></হয়></td>
 <td সারিবদ্ধ= অধিকার><হয় রঙ= সাদা><বো>বাজেট</বো></হয়></td>
 <td সারিবদ্ধ= অধিকার><হয় রঙ= সাদা><বো>প্রকৃত ব্যয়</বো></হয়></td>
 <td><হয় রঙ= সাদা><বো>সামগ্রিকভাবে স্থিতি</বো></হয়></td>
 </tr>

<tr>
 <td>পুনরায় তারের কম্পিউটার রুম.</td>
 <td সারিবদ্ধ= অধিকার>02/01/08</td>
 <td সারিবদ্ধ= অধিকার>22,500.00</td>
 <td সারিবদ্ধ= অধিকার>19,000.00</td>
 <td>প্রক্রিয়ায় আছে</td>
 </tr>

<tr>
 <td>এসকিউএল আপগ্রেড বিধান সার্ভার</td>
 <td সারিবদ্ধ= অধিকার>04/01/08</td>
 <td সারিবদ্ধ= অধিকার>7,500.00</td>
 <td সারিবদ্ধ= অধিকার>0.00</td>
 <td>পরিকল্পনা</td>
 </tr>

</টেবিল>
 </কেন্দ্র>
 </শরীর>
</HTML>

অভিগমন

গ্রিড তৈরি করতে নিম্নলিখিত ধাপগুলি অনুসরণ করুন:

  1. গ্রিড উপাদান শনাক্ত (সারি / কলাম).
  2. প্রয়োজনীয় সাইট কলাম নির্ধারণ এবং তৈরি করুন.
  3. প্রকল্প এবং একক বস্তু তালিকায় উপ সাইট তৈরি করুন.
  4. একটি ওয়েব পৃষ্ঠা CQWP যোগ করুন এবং আপনার তালিকার জন্য অনুসন্ধান করতে এই ব্যবস্থা কনফিগার করুন.
  5. অতিরিক্ত কলাম আপ জড়ো CQWP এর এক্সএমএল পরিবর্তন করুন.
  6. একটি টেবিল উৎপন্ন XSL পরিবর্তন করুন.

I’m going to concentrate on number six. Numbers one through four are straight-forward and something that any CQWP user has already done. Number five has been well-documented by others including this exhaustive screen-shot laden article from MSDN এখানে (http://msdn2.microsoft.com/en-us/library/bb897399.aspx) এবং হিদার সলোমন এর ব্লগ এখানে (http://www.heathersolomon.com/blog/articles/CustomItemStyle.aspx).

ব্যবহারিক খুঁটিনাটি

ধাপ MSDN ডকুমেন্টেশন এবং হিদার সলোমন এর নিবন্ধ অনুযায়ী পাঁচ মাধ্যমে শুরু করুন এবং বাস্তবায়ন.

এই বিন্দু, আপনি পৃষ্ঠায় আপনার নিজের CQWP যুক্ত করেছি এবং আপনি আপনার <CommonViewFields> প্রয়োজনীয় হিসাবে কনফিগার করা.

স্বাভাবিক পদক্ষেপগুলি অনুসরণ, আমি এই অন্তর্বর্তী ফলাফল পেতে:

1. একটি বিষয়বস্তু টাইপ তৈরি করুন, a templatized custom list for that content type and two sites. Here is the content type:

ইমেজ

এখানে সাইট গঠন:

ইমেজ

2. আমার প্রকল্প subsites এবং একক প্রকল্প করুন সংক্ষিপ্ত তালিকা তৈরি করার পর CQWP যোগ করুন:

ইমেজ

3. এর মাধ্যমে আমি চাই সমস্ত অতিরিক্ত তথ্য যোগ করুন <CommonViewFields>:

        <সম্পত্তি নাম="CommonViewFields" টাইপ="স্ট্রিং">Project_x0020_Name;Project_x0020_Expenses;Project_x0020_Status;Project_x0020_Start_x0020_Date;Project_x0020_End_x0020_Date;Project_x0020_Budget</সম্পত্তি>

আমি এক লাইনে সব সম্পত্তি ক্ষেত্র রাখা ছিল উল্লেখ্য, অথবা এটি কাজ করবে (CQWP ক্যোয়ারী কোন আইটেম ফিরে যে হবে একটু বলবেন).

4. এই বিন্দু, we’re ready to move beyond the MSDN article and flip on over to Heather Solomon’s article. Follow her steps starting near step #5 একটি কাস্টমাইজড তৈরি করতে / unghosted version of ItemStyle.xsl. I follow Heather’s advice, ধাপ মাধ্যমে আপ 11 এবং এই অন্তর্বর্তী ফলাফল পেতে:

4.1: আমার XSL টেমপ্লেট নিম্নরূপ নাম:

<xsl:template name="Grid" match="Row[@Style=’Grid’]" mode="itemstyle">

আমি সামান্য তার প্রস্তাবিত পরিবর্তন করুন <xsl:-প্রতিটি জন্য …> একটি যোগ করে <বিআর /> একটি ক্লিনার তালিকা প্রদান ট্যাগ:

    <xsl:-প্রতিটি জন্য নির্বাচন করা="@ *">
      পি:<xsl:মান-এর নির্বাচন করা="নাম()" /><বিআর/>
    </xsl:-প্রতিটি জন্য>

4.2: আমি ওয়েবে অংশ পরিবর্তন করুন, go to appearance and select my "Grid" শৈলী:

ইমেজ

পরিবর্তন প্রয়োগ করুন এবং এখানে ফলাফল:

ইমেজ

আমরা ক্ষেত্র আমরা চাই যে উপরে থেকে দেখতে পারেন (প্রকল্প নাম, ব্যয়, অবস্থা, প্রভৃতি) are available for us to use when we emit the HTML. Not only that, but we see the names by which we must reference those columns in the XSL. উদাহরণস্বরূপ, we reference Project Status as "Project_x005F_x0020_Name".

এই বিন্দু, আমরা হিদার ব্লগ থেকে এবং এই দৈত্যদের কাঁধের ওপর থেকে চরা, আমি আমার নিজের সামান্য বিট যোগ করুন.

ContentQueryMain.xsl

উল্লেখ্য: উভয় ContentQueryMain.xsl পরিবর্তনের পাশাপাশি ItemStyle.xsl যখন, আপনার পরিবর্তনের প্রভাব দেখতে আগে আপনি ফিরে ফাইলগুলি পরীক্ষা প্রয়োজন.

গ্রিড তৈরি উদ্দেশ্যে, MOSS uses two different XSL files to produce the results we see from a CQWP. To generate the previous bit of output, we modified ItemStyle.xsl. MOSS actually uses another XSL file, ContentQueryMain.xsl to in conjunction with ItemStyle.xsl to generate its HTML. As its name implies, ContentQueryMain.xsl is the "main" XSL that controls the overall flow of translation. It iterates through all the found items and passes them one by one to templates in ItemStyle.xsl. We’ll modify ItemStyle.xsl to generate the open <টেবিল> তথ্য প্রথম সারির emitting আগে ট্যাগ এবং ক্লোজিং <টেবিল> tag after emitting the last row. To accomplish this, ContentQueryMain.xsl is modified to pass two parameters to our "grid" ItemStyle.xsl মধ্যে ফর্মা, "last row" and "current row". ItemStyle.xsl uses these to conditionally emit the necessary tags.

হিদার সলোমন টেকনিক ব্যবহার করে, we locate ContentQueryMain.xsl. It is located in the same place as ItemStyle.xsl. This screen shot should help:

ইমেজ

আমরা নিম্নলিখিত পরিবর্তন করা প্রয়োজন:

  • একটি XSL টেমপ্লেট পরিবর্তন করুন, "CallItemTemplate" that actually invokes our Grid template in ItemStyle.xsl. We will pass two parameters to the Grid template so that it will have the data it needs to conditionally generate opening and closing <টেবিল> ট্যাগ.
  • Modify another bit of ContentQueryMain.xsl that calls the "CallItemTemplate" to pass it a "LastRow" LastRow আমাদের গ্রিড টেমপ্লেট হস্তান্তর করা হতে পারে পরামিতি যাতে.

Locate the template named "OuterTemplate.CallItemTemplate" স্ট্রিং দ্বারা চিহ্নিত:

  <xsl:টেমপ্লেট নাম="OuterTemplate.CallItemTemplate">

নিম্নরূপ গোটা টেমপ্লেট প্রতিস্থাপন করুন:

  <xsl:টেমপ্লেট নাম="OuterTemplate.CallItemTemplate">
    <xsl:PARAM নাম="CurPosition" />

    <!--
      Add the "LastRow" পরামিতি.
      We only use it when the item style pass in is "Grid".
    -->
    <xsl:PARAM নাম="LastRow" />

    <xsl:নির্বাচন করা>
      <xsl:যখন পরীক্ষা="@ শৈলী = 'NewsRollUpItem'">
        <xsl:-টেমপ্লেট আবেদন নির্বাচন করা="." মোড="itemstyle">
          <xsl:সঙ্গে PARAM নাম="EditMode" নির্বাচন করা="$cbq_iseditmode" />
        </xsl:-টেমপ্লেট আবেদন>
      </xsl:যখন>
      <xsl:যখন পরীক্ষা="@ শৈলী = 'NewsBigItem'">
        <xsl:-টেমপ্লেট আবেদন নির্বাচন করা="." মোড="itemstyle">
          <xsl:সঙ্গে PARAM নাম="CurPos" নির্বাচন করা="$CurPosition" />
        </xsl:-টেমপ্লেট আবেদন>
      </xsl:যখন>
      <xsl:যখন পরীক্ষা="@ শৈলী = 'NewsCategoryItem'">
        <xsl:-টেমপ্লেট আবেদন নির্বাচন করা="." মোড="itemstyle">
          <xsl:সঙ্গে PARAM নাম="CurPos" নির্বাচন করা="$CurPosition" />
        </xsl:-টেমপ্লেট আবেদন>
      </xsl:যখন>

      <!--
              গ্রিড itemstyle.xsl টেমপ্লেটে বর্তমান অবস্থান এবং lastrow পাস.
              ItemStyle.xsl খোলা এবং বন্ধের নির্গত যে ব্যবহার করা হবে <টেবিল> ট্যাগ.
      -->
      <xsl:যখন পরীক্ষা="@ শৈলী = 'গ্রিড'">
        <xsl:-টেমপ্লেট আবেদন নির্বাচন করা="." মোড="itemstyle">
          <xsl:সঙ্গে PARAM নাম="CurPos" নির্বাচন করা="$CurPosition" />
          <xsl:সঙ্গে PARAM নাম="শেষ" নির্বাচন করা="$LastRow" />
        </xsl:-টেমপ্লেট আবেদন>
      </xsl:যখন>

      <xsl:অন্যথায়>
        <xsl:-টেমপ্লেট আবেদন নির্বাচন করা="." মোড="itemstyle">
        </xsl:-টেমপ্লেট আবেদন>
      </xsl:অন্যথায়>
    </xsl:নির্বাচন করা>
  </xsl:টেমপ্লেট>

মন্তব্য পরিবর্তন উদ্দেশ্য বর্ণনা.

অবশ্যই, the "OuterTemplate.CallItemTemplate" is itself called from another template. Locate that template by searching for this text string:

<xsl:টেমপ্লেট নাম="OuterTemplate.Body">

OuterTemplate.Body নির্দেশাবলী মাধ্যমে স্ক্রোল LastRow পরামিতি নিম্নরূপ সন্নিবেশ (italics মধ্যে একটি মন্তব্য হিসেবে দেখানো):

<xsl:কল-ফর্মা নাম="OuterTemplate.CallItemTemplate">
  <xsl:সঙ্গে PARAM নাম="CurPosition" নির্বাচন করা="$CurPosition" />
  <!-- LastRow পরামিতি ঢোকান. -->
  <xsl:সঙ্গে PARAM নাম="LastRow" নির্বাচন করা="$LastRow"/>
</xsl:কল-ফর্মা>

এই সব করার পর, পরিশেষে আমরা জিনিসগুলি সঠিকভাবে যাতে আমাদের ItemStyle.xsl নির্গত করতে পারেন স্থাপন করেছেন <টেবিল> ঠিক জায়গায় ট্যাগ.

ItemStyle.Xsl

উল্লেখ্য: আবার, আপনি ঐ পরিবর্তনের প্রভাব দেখতে যাতে কোনো পরিবর্তনের পরে ItemStyle.xsl চেক.

আমরা এখানে দুই কাজগুলো আছে:

  • Replace the entire Grid template. You can copy/paste from below.
  • Add some mumbo jumbo outside the template definition that enables "formatcurrency" template to work. (আপনি আমি XSL নেভিগেশন একটি স্থায়ী হাতল আছে বলতে পারেন যে).

প্রথম, ItemStyle.xsl উপরের অংশে, এই পংক্তিটি যোগ করুন:

  <!-- আমাদের যুক্তরাষ্ট্রের বাইরের প্রদর্শন করতে সক্ষম হবেন যে কিছু mumbo Jumbo. মুদ্রা. -->
  <xsl:দশমিক ফরম্যাট নাম="স্টাফ" অঙ্ক="ডি" />

  <xsl:টেমপ্লেট নাম="ডিফল্ট" দিয়াশলাই="*" মোড="itemstyle">

আমি আগে সরাসরি এখনো যোগ করেনি উল্লেখ্য, <xsl:template name="Default" …> সংজ্ঞা.

পরবর্তী, go back to our Grid template. Replace the entire Grid template with the code below. It is thoroughly commented, কিন্তু আমাকে ইমেইল দ্বিধা বা আপনার কোন প্রশ্ন থাকে, তাহলে আমার ব্লগে মন্তব্য ছেড়ে না.

  <xsl:টেমপ্লেট নাম="গ্রিড" দিয়াশলাই="সারি[@ শৈলী = 'গ্রিড']" মোড="itemstyle">

    <!--
      ContentMain.xsl CurPos ও শেষ পাসের.
      আমরা শর্তসাপেক্ষে খোলা এবং বন্ধের নির্গত এই ব্যবহার <টেবিল> ট্যাগ.
    -->
    <xsl:PARAM নাম="CurPos" />
    <xsl:PARAM নাম="শেষ" />

    <!-- নিম্নলিখিত ভেরিয়েবলের মান ItemStyle.xsl থেকে অপরিবর্তিত হয় -->
    <xsl:পরিবর্তনশীল নাম="SafeImageUrl">
      <xsl:কল-ফর্মা নাম="OuterTemplate.GetSafeStaticUrl">
        <xsl:সঙ্গে PARAM নাম="UrlColumnName" নির্বাচন করা="'ImageUrl'"/>
      </xsl:কল-ফর্মা>
    </xsl:পরিবর্তনশীল>
    <xsl:পরিবর্তনশীল নাম="SafeLinkUrl">
      <xsl:কল-ফর্মা নাম="OuterTemplate.GetSafeLink">
        <xsl:সঙ্গে PARAM নাম="UrlColumnName" নির্বাচন করা="'LinkUrl'"/>
      </xsl:কল-ফর্মা>
    </xsl:পরিবর্তনশীল>
    <xsl:পরিবর্তনশীল নাম="DisplayTitle">
      <xsl:কল-ফর্মা নাম="OuterTemplate.GetTitle">
        <xsl:সঙ্গে PARAM নাম="শিরোনাম" নির্বাচন করা="@ শিরোনাম"/>
        <xsl:সঙ্গে PARAM নাম="UrlColumnName" নির্বাচন করা="'LinkUrl'"/>
      </xsl:কল-ফর্মা>
    </xsl:পরিবর্তনশীল>
    <xsl:পরিবর্তনশীল নাম="LinkTarget">
      <xsl:যদি পরীক্ষা="@ OpenInNewWindow = 'সত্য'" >_blank</xsl:যদি>
    </xsl:পরিবর্তনশীল>

    <!--
      এখানে আমরা একটি পরিবর্তনশীল সংজ্ঞায়িত, "tableStart".  এই HTML রয়েছে
      .  উল্লেখ্য যে যদি CurPos = 1, এটি একটি CDATA ট্যাগের এইচটিএমএল অন্তর্ভুক্ত.
      অন্যথায়, এটি খালি হবে.

      tableStart মান প্রত্যেক সময় ItemStyle মাধ্যমে বলা হয় emited হয়
      .
    -->
    <xsl:পরিবর্তনশীল নাম="tableStart">
      <xsl:যদি পরীক্ষা="$CurPos = 1">
        <![CDATA[
        <সারণি সীমানা = 1>
          <tr bgcolor="blue">
            <td><font color="white"><বো>প্রকল্প নাম</বো></হয়></td>
            <td align="right"><font color="white"><বো>জন্ম সমাপ্তি</বো></হয়></td>
            <td align="right"><font color="white"><বো>বাজেট</বো></হয়></td>
            <td align="right"><font color="white"><বো>প্রকৃত ব্যয়</বো></হয়></td>
            <td><font color="white"><বো>সামগ্রিকভাবে স্থিতি</বো></হয়></td>
          </tr>
        ]]>
      </xsl:যদি>
    </xsl:পরিবর্তনশীল>

    <!--
      অন্য পরিবর্তনশীল, tableEnd কেবল ক্লোজিং টেবিল ট্যাগ সংজ্ঞায়িত.

      TableStart সঙ্গে, এটা সবসময় emited এর.  তার মান হল এটা কেন
      .
    -->
    <xsl:পরিবর্তনশীল নাম="tableEnd">
      <xsl:যদি পরীক্ষা="$CurPos শেষ $ =">
        <![CDATA[ </টেবিল> ]]>
      </xsl:যদি>
    </xsl:পরিবর্তনশীল>

    <!--
      সর্বদা tableStart বিষয়বস্তু নির্গত.  এই প্রথম না হলে
      , তারপর আমরা এর মান জানা
      .

      Escaping আউটপুট অক্ষম কারণ যখন tableStart এটি ফাঁকা না, এটা
      .  যদি
      , it will generate
      stuff like "&LT;টেবিল&জি.টি.;" instead of "<টেবিল>".
    -->
    <xsl:মান-এর নির্বাচন করা="$tableStart" নিষ্ক্রিয়-আউটপুট-escaping="হ্যাঁ"/>


    <tr>
      <!--
      পি:Project_x005F_x0020_Name
      :Project_x005F_x0020_End_x005F_x0020_Date
      :Project_x005F_x0020_Budget
      :Project_x005F_x0020_Expenses
      :Project_x005F_x0020_Status
      -->
      <td>
        <xsl:মান-এর নির্বাচন করা="@ Project_x005F_x0020_Name"/>
      </td>

      <td সারিবদ্ধ="অধিকার">
        <xsl:মান-এর নির্বাচন করা="@ Project_x005F_x0020_End_x005F_x0020_Date"/>
      </td>

      <td সারিবদ্ধ="অধিকার">
        <xsl:কল-ফর্মা নাম="formatcurrency">
          <xsl:সঙ্গে PARAM নাম="মান" 
নির্বাচন করা="@ Project_x005F_x0020_Budget"></xsl:সঙ্গে PARAM> </xsl:কল-ফর্মা> </td> <td সারিবদ্ধ="অধিকার"> <xsl:কল-ফর্মা নাম="formatcurrency"> <xsl:সঙ্গে PARAM নাম="মান" নির্বাচন করা="@ Project_x005F_x0020_Expenses">
</xsl:সঙ্গে PARAM> </xsl:কল-ফর্মা> </td> <td> <xsl:মান-এর নির্বাচন করা="@ Project_x005F_x0020_Status"/> </td> <!-- নিম্নলিখিত সবকিছুর নির্মল খুঁজে মন্তব্য করা হয়. কিন্তু, এটি ফিরিয়ে আনতে এবং সেটিকে সামগ্রী <td> তার দেখতে         . --> <!-- <div id="linkitem" class="item"> <xsl:if test="string-length($SafeImageUrl) != 0"> <div class="image-area-left"> <a href="{$SafeLinkUrl}" target="{$LinkTarget}"> <img class="image-fixed-width" src="{$SafeImageUrl}"
alt="{@ ImageUrlAltText}"/> </একটি> </div> </xsl:যদি> <div class="link-item"> <xsl:কল-ফর্মা
name="OuterTemplate.CallPresenceStatusIconTemplate"/> <a href="{$SafeLinkUrl}"
target="{$LinkTarget}" title="{@ LinkToolTip}"> <xsl:value-of select="$DisplayTitle"/> </একটি> <div class="description"> <xsl:value-of select="@Description" /> </div> </div> </div>
--> </tr> <!-- ক্লোজিং টেবিল ট্যাগ নির্গত. আমরা শেষ সারিতে না হন, এই ফাঁকা হতে হবে. --> <xsl:মান-এর নির্বাচন করা="$tableEnd" নিষ্ক্রিয়-আউটপুট-escaping="হ্যাঁ"/> </xsl:টেমপ্লেট> <xsl:টেমপ্লেট নাম="formatcurrency"> <xsl:PARAM নাম="মান" নির্বাচন করা="0" /> <xsl:মান-এর নির্বাচন করা='বিন্যাস-সংখ্যা($মান, "$DDD,DDD,DDD.DD", "staff")' /> </xsl:টেমপ্লেট>

স্ট্যান্ডার্ড WSS / MOSS ডেটা এন্ট্রি স্ক্রিন ক্যাসকেডিং ড্রপ উন্মুক্ত বিস্তৃত উচ্চভূমি সমর্থন করে না (অথবা যোগাযোগ ভিতরে থেকে অন্যান্য)

আপডেট (04/2008): এই মহান ব্লগে এন্ট্রি এই সমস্যার একটি ভাল জাভাস্ক্রিপ্ট ভিত্তিক ব্যবস্থা দেখায়: http://webborg.blogspot.com/2008/04/add-functions-and-events-to-sharepoint.html

আপডেট ২: (04/2008): এই ব্লগে এন্ট্রি হিসাবে ভাল প্রতিশ্রুতি দেখায়: http://www.cleverworkarounds.com/2008/03/13/free-mosswss-2007-web-part-hide-controls-via-javascript/

বেশ কয়েকবার একটি সপ্তাহ, প্রতিদিন যদি না, forum users describe a requirement that would normally be met via cascading drop-downs. উদাহরণস্বরূপ, আমি দুই ড্রপ ডাউন নিয়ন্ত্রণ আছে:

  • যুক্তরাষ্ট্রের বাইরের তালিকা. মার্কিন যুক্তরাষ্ট্র
  • যুক্তরাষ্ট্রের বাইরের তালিকা. cities.

As responsible UI providers, we want it to operate like this:

  • Paul selects a U.S. state from the drop-down.
  • This causes the cities drop-down to filter only those cities that belong to the selected state.
  • Paul selects a city from this filtered list.

There is no out-of-the-box support for this feature. বাস্তবিকই, there is no OOB support for any kind of direct intra-form communication. This includes programmatically hiding/enabling/disabling fields in response to field changes elsewhere on the form.

The real objective of this article to to describe possible solutions and these are the options as I know them:

  1. Develop a custom column type. As a custom-column-developer, you have full control over the "world" of that custom column. You can implement a cascading drop-down that way.
  2. Consider using workflow. In some cases, you want to automatically assign a value to field based on another field’s value. এই ক্ষেত্রে, you would normally try to use a calculated column, but some times, it just won’t get the job done. SharePoint Designer workflow is a relatively administer-friendly alternative to dropping down into code and visual studio. If you go this route, be aware of the issue addressed by এই নিবন্ধটি (http://paulgalvin.spaces.live.com/blog/cns!CC1EDB3DAA9B8AA!405.entry).
  3. Event handlers: Like workflow, this is an after-the-fact solution. Your event handler is a .NET assembly (সি #, VB.NET) to which SharePoint passes control. The object you develop has access to the data of the list (and the whole object model) and can do any needed calculation.
  4. Use SharePoint Designer to create custom entry forms. I don’t have direct experience with this approach, but I hear they are doing good things with NewForm.aspx these days 🙂
  5. Roll your own ASP.NET data entry function (as a stand-alone web page or as a web part) and use that instead.

If anyone knows other and/or better options, please post a comment and I’ll update the body of this post.

<শেষ />

Technorati বিভাগ:

SharePoint মধ্যে বার গ্রাফ নির্মাণ

পরিদর্শন:

(আপডেট 12/04/07: একটি খুব আকর্ষণীয় ওয়েব অংশ মাধ্যমে এই সমস্যা যে অন্য কোন ব্লগে লিঙ্ক শেষে আরেকটি আকর্ষণীয় সম্পদ এখনো যোগ করেনি)

This blog entry describes how to create a bar graph in SharePoint. This works in both WSS and MOSS environments as it only depends upon the data view web part.

The overall approach is as follows:

  1. Create a list or document library that contains the data you want to graph.
  2. Place the associated document library / custom list onto a page and convert it to a data view web part (DVWP).
  3. Modify the DVWP’s XSL to generate HTML that shows as a graph.

ব্যবসা দৃশ্যকল্প / সেটআপ:

I have created a custom list with the standard Title column and one additional column, "Status". This models (very simplistically) an "Authorization For Expense" শিরোনাম প্রকল্প এবং স্থিতি তালিকা থেকে একটি মান প্রতিনিধিত্ব করে যেখানে দৃশ্যকল্প:

  • প্রস্তাবিত
  • প্রক্রিয়ায়
  • স্থগিত

উদ্দেশ্য এই অবস্থা কোড দেখায় যে একটি মিথস্ক্রিয় অনুভূমিক বার গ্রাফ উত্পাদন হয়.

আমি তালিকা পূরণ করে থাকেন এবং এটা ভালো দেখায়:

ইমেজ

ডেটা দেখুন ওয়েব পার্ট তৈরি করুন:

একটি পৃষ্ঠায় কাস্টম তালিকা যোগ DVWP তৈরি করুন (আমার ক্ষেত্রে সাইট পাতা) এবং নির্দেশাবলী অনুসরণ করুন এখানে (http://paulgalvin.spaces.live.com/blog/cns!1CC1EDB3DAA9B8AA!395.entry).

সহজভাবে DVWP তৈরি ছাড়াও, we also need to set the paging property to show all available rows. আমার জন্য, এই ভালো কিছু দেখায়:

ইমেজ

এই বিন্দু, I always close SPD and the browser. I then re-open the page using the browser. This avoids accidentally mucking up the web part layout on the page.

XSLT স্টাইলশীট পরিবর্তন করুন:

এটা XSLT স্টাইলশীট পরিবর্তন করার এখন সময়.

I always use visual studio for this. (দেখুন এখানে for an important note about intellisense that will help you a lot).

I create an empty project add four new files (replacing the words "Original" and "New" as appropriate):

  • Original.xslt
  • New.xslt
  • Original Params.xml
  • New Params.xml

আমার কেস, এটা ভালো দেখায়:

ইমেজ

Modify the web part and copy the params and XSL to the "Original" ভিসুয়াল স্টুডিও সংস্করণ.

এখানে উদ্দেশ্য XSL গ্রাফ হিসাবে উপস্থাপনা করে HTML এর মধ্যে DVWP ক্যোয়ারী থেকে আমরা ফিরে পেতে ফলাফল রুপান্তর হতে হয়.

এই শেষ, it helps to first consider what the HTML should look like before we get confused by the insanity that is known as "XSL". (পরিষ্কার করা, নিম্নলিখিত কেবল একটি উদাহরণ; don’t type it or copy/paste into visual studio. I provide a full blow starting point for that later in the write-up). The following sample graph is rendered as per the HTML immediately following:

Sample Bar Graph

সংশ্লিষ্ট এইচটিএমএল:

<HTML>
<শরীর>
<কেন্দ্র>
<টেবিল প্রস্থ = 80%>
<tr><td><কেন্দ্র>Horizontal Bar Graph</td></tr>
<tr>
<td align="center">
<table border="1" প্রস্থ = 80%>
<tr>
<Td প্রস্থ = 10%>খুলুন</td>
<td><টেবিল = cellpadding"0" = cellspacing"0" সীমানা = 0 প্রস্থ = 50%><TR bgcolor = লাল><td>&nbsp;</td></tr></টেবিল></td>
</tr>
<tr>
<Td প্রস্থ = 10%>বন্ধ</td>
<td><টেবিল = cellpadding"0" = cellspacing"0" সীমানা = 0 প্রস্থ = 25%><TR bgcolor = লাল><td>&nbsp;</td></tr></টেবিল></td>
</tr>
<tr>
<Td প্রস্থ = 10%>স্থগিত</td>
<td><টেবিল = cellpadding"0" = cellspacing"0" সীমানা = 0 প্রস্থ = 25%><TR bgcolor = লাল><td>&nbsp;</td></tr></টেবিল></td>
</tr>
</টেবিল>
</td>
</tr>
</টেবিল>
</শরীর>
</HTML>

I used a dead simple approach to creating my bars by setting the background color of a row to "red".

নিন-দূরে এখানে এই হল: শেষ পর্যন্ত, আমরা করছেন সব সারি এবং কলাম সঙ্গে এইচটিএমএল তৈরি হয়.

টেমপ্লেট XSLT স্টাইলশীট:

I’ve copied the XSLT that generates a horizontal bar graph. It’s fairly well commented so I won’t add much here except for these notes:

  • আমি প্রথম DVWP তৈরি করার সময় SharePoint ডিজাইনার সম্পর্কে দিয়েছেন ডিফল্ট XSL শুরু.
  • আমি SPD এর থেকে এই নিচে কাটা করতে পারবেন 657 লাইন 166 lines.
  • আমি পরামিতি XML ফাইল সঙ্গে প্রায় বিশৃঙ্খল না (XSL থেকে পৃথক হয় এবং আপনি DVWP নিজেকে পরিবর্তন করতে যান তখন আপনাকে আমি বলতে চাচ্ছি তা জানতে পারবেন যা; আপনি পরিবর্তন করতে পারেন দুটি ফাইল আছে). কিন্তু, এটি সরল করার জন্য, I did remove nearly all of them from the XSL. This means that if you want to make use of those parameters, you just need to add their variable definitions back to the XSL. That will be easy since you will have the original XSL variable definitions in your visual studio project.
  • You ought to be able to copy and paste this directly into your visual studio project. তারপর, remove my calls and insert your own calls to "ShowBar".
  • The drill down works by creating an <একটি href> এমন: http://server/List?FilterField1=fieldname&FilterValue1=actualFilterValue. This technique may be of value in other contexts. প্রথমে, I thought I would need to conform to a more complex format: http://server/List/AllItems.aspx?View={guid}&FilterField1=blah&FilterValue1=blah, but in my environment that is not necessary. The List’s URL is passed to us by SharePoint so this is quite easy to generalize.

Here it is:

<xsl:স্টাইলশীট সংস্করণ="1.0" exclude-result-prefixes="rs z o s ddwrt dt msxsl" 
xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:xsl="HTTP://www.w3.org/1999/XSL/Transform"
xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:__designer="HTTP://schemas.microsoft.com/WebParts/v2/DataView/designer"
xmlns:কস্পমান="HTTP://schemas.microsoft.com/ASPNET/20" xmlns:ddwrt="HTTP://schemas.microsoft.com/WebParts/v2/DataView/runtime"
xmlns:দী="urn:schemas-microsoft-com:অফিস" xmlns:গণ="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"
xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:টকা="urn:schemas-microsoft-com:rowset" xmlns:z-র="#RowsetSchema"
xmlns:ddwrt2="urn:frontpage:অভ্যন্তরীণ"
> <xsl:উত্পাদন পদ্ধতি="HTML" ইন্ডেন্ট="কোন" /> <xsl:দশমিক ফরম্যাট Nan="" /> <xsl:PARAM নাম="ListUrlDir"></xsl:PARAM> <!-- আমি একটি ড্রিল ডাউন সমর্থন এই প্রয়োজন. --> <xsl:টেমপ্লেট দিয়াশলাই="/" xmlns:SharePoint="Microsoft.SharePoint.WebControls"
xmlns:__designer=http://schemas.microsoft.com/WebParts/v2/DataView/designer xmlns:কস্পমান="HTTP://schemas.microsoft.com/ASPNET/20"
> <xsl:পরিবর্তনশীল নাম="dvt_StyleName">টেবিল</xsl:পরিবর্তনশীল> <xsl:পরিবর্তনশীল নাম="সারি" নির্বাচন করা="/dsQueryResponse / সারি / সারি" /> <xsl:পরিবর্তনশীল নাম="dvt_RowCount" নির্বাচন করা="গণনা($সারি)" /> <xsl:পরিবর্তনশীল নাম="IsEmpty" নির্বাচন করা="$dvt_RowCount = 0" /> <xsl:পরিবর্তনশীল নাম="dvt_IsEmpty" নির্বাচন করা="$dvt_RowCount = 0" /> <xsl:নির্বাচন করা> <xsl:যখন পরীক্ষা="$dvt_IsEmpty"> গ্রাফ কোন তথ্য নেই!<বিআর/> </xsl:যখন> <xsl:অন্যথায়> <!-- আকর্ষণীয় উপাদান এখানে শুরু. আমরা গ্রাফ প্রতিটি সারির জন্য ভেরিয়েবল একজোড়া উল্লেখ করা প্রয়োজন: সমূহ           . --> <xsl:পরিবর্তনশীল নাম="totalProposed" নির্বাচন করা="গণনা(/dsQueryResponse / সারি / সারি[স্বাভাবিক-স্থান(@ স্থিতি) = 'প্রস্তাবিত'])" /> <xsl:পরিবর্তনশীল নাম="percentProposed" নির্বাচন করা="$totalProposed DIV $ dvt_RowCount" /> <xsl:পরিবর্তনশীল নাম="totalInProcess" নির্বাচন করা="গণনা(/dsQueryResponse / সারি / সারি[স্বাভাবিক-স্থান(@ স্থিতি) = 'প্রক্রিয়ায়'])" /> <xsl:পরিবর্তনশীল নাম="percentInProcess" নির্বাচন করা="$totalInProcess DIV $ dvt_RowCount" /> <xsl:পরিবর্তনশীল নাম="totalStalled" নির্বাচন করা="গণনা(/dsQueryResponse / সারি / সারি[স্বাভাবিক-স্থান(@ স্থিতি) = 'স্থগিত'])" /> <xsl:পরিবর্তনশীল নাম="percentStalled" নির্বাচন করা="$totalStalled div $dvt_RowCount" /> <!-- We define our HTML table here. I'm borrowing from some standard SharePoint styles here to make it consistent. I think it will honor changes to the global css file as well as theme overrides. --> <টেবিল প্রস্থ="100%" cellspacing="0" cellpadding="2" শৈলী="border-right: 1 solid #C0C0C0; border-bottom: 1 solid #C0C0C0; border-left-style: solid; border-left-width: 1; border-top-style: solid; border-top-width: 1;"> <tr> <td সারিবদ্ধ="কেন্দ্র"> <টেবিল সীমানা="1" প্রস্থ="100%"> <!-- For each status that we want to graph, we call the "ShowBar" টেমপ্লেট. We pass it: 1. A label for the row. This is transformed into a hyperlink. 2. The percent (variable from above). 3. The actual field name of the code from the underlying list. This does not need to match the display label. 4. Field value matched for #3. 5. Total items of this status code (not the grand total of all status codes). It emits a <tr></tr> and the horizontal bar graph line. We call this template for each status code we want to view. --> <xsl:কল-ফর্মা নাম="ShowBar"> <xsl:সঙ্গে PARAM নাম="BarDisplayLabel" নির্বাচন করা="'Proposed'"/> <xsl:সঙ্গে PARAM নাম="BarPercent" নির্বাচন করা="$percentProposed"/> <xsl:সঙ্গে PARAM নাম="QueryFilterFieldName" নির্বাচন করা="'Status'"/> <xsl:সঙ্গে PARAM নাম="QueryFilterFieldValue" নির্বাচন করা="'Proposed'"/> <xsl:সঙ্গে PARAM নাম="TotalItems" নির্বাচন করা="$totalProposed"></xsl:সঙ্গে PARAM> </xsl:কল-ফর্মা> <xsl:কল-ফর্মা নাম="ShowBar"> <xsl:সঙ্গে PARAM নাম="BarDisplayLabel" নির্বাচন করা="'Stalled'"/> <xsl:সঙ্গে PARAM নাম="BarPercent" নির্বাচন করা="$percentStalled"/> <xsl:সঙ্গে PARAM নাম="QueryFilterFieldName" নির্বাচন করা="'Status'"/> <xsl:সঙ্গে PARAM নাম="QueryFilterFieldValue" নির্বাচন করা="'Stalled'"/> <xsl:সঙ্গে PARAM নাম="TotalItems" নির্বাচন করা="$totalStalled"></xsl:সঙ্গে PARAM> </xsl:কল-ফর্মা> <xsl:কল-ফর্মা নাম="ShowBar"> <xsl:সঙ্গে PARAM নাম="BarDisplayLabel" নির্বাচন করা="'In Process'"/> <xsl:সঙ্গে PARAM নাম="BarPercent" নির্বাচন করা="$percentInProcess"/> <xsl:সঙ্গে PARAM নাম="QueryFilterFieldName" নির্বাচন করা="'Status'"/> <xsl:সঙ্গে PARAM নাম="QueryFilterFieldValue" নির্বাচন করা="'In Process'"/> <xsl:সঙ্গে PARAM নাম="TotalItems" নির্বাচন করা="$totalInProcess"></xsl:সঙ্গে PARAM> </xsl:কল-ফর্মা> </টেবিল> </td> </tr> </টেবিল> </xsl:অন্যথায়> </xsl:নির্বাচন করা> </xsl:টেমপ্লেট> <!-- This template does the work of displaying individual lines in the bar graph. You'll probably do most of your tweaking here. --> <xsl:টেমপ্লেট নাম="ShowBar"> <xsl:PARAM নাম="BarDisplayLabel" /> <!-- label to show --> <xsl:PARAM নাম="BarPercent"/> <!-- Percent of total. --> <xsl:PARAM নাম="QueryFilterFieldName"/> <!-- Used to jump to the query & filter --> <xsl:PARAM নাম="QueryFilterFieldValue"/> <!-- Used to jump to the query & filter --> <xsl:PARAM নাম="TotalItems" /> <!-- total count of this barlabel --> <tr> <!-- The bar label itself. --> <td বর্গ="ms-formbody" প্রস্থ="30%"> <!-- This next set of statements builds a query string that allows us to drill down to a filtered view of the underlying data. We make use of a few things here: 1. We can pass FilterField1 and FilterValue1 to a list to filter on a column. 2. SharePoint is passing a key parameter to us, ListUrlDir that points to the underlying list against which this DVWP is "running". Isn't XSL fun? --> <xsl:পাঠ নিষ্ক্রিয়-আউটপুট-escaping="হ্যাঁ"> <![CDATA[<একটি href ="]]></xsl:পাঠ> <xsl:মান-এর নির্বাচন করা="$ListUrlDir"/> <xsl:পাঠ নিষ্ক্রিয়-আউটপুট-escaping="হ্যাঁ"><![CDATA[?FilterField1=]]></xsl:পাঠ> <xsl:মান-এর নির্বাচন করা="$QueryFilterFieldName"/> <xsl:পাঠ নিষ্ক্রিয়-আউটপুট-escaping="হ্যাঁ"><![CDATA[&FilterValue1=]]></xsl:পাঠ> <xsl:মান-এর নির্বাচন করা="$QueryFilterFieldValue"/> <xsl:পাঠ নিষ্ক্রিয়-আউটপুট-escaping="হ্যাঁ"><![CDATA[">]]></xsl:পাঠ> <xsl:মান-এর নির্বাচন করা="$BarDisplayLabel"/> <xsl:পাঠ নিষ্ক্রিয়-আউটপুট-escaping="হ্যাঁ"><![CDATA[</একটি>]]></xsl:পাঠ> <!-- The next bit shows some numbers in the format: "(total / % of total)" --> (<xsl:মান-এর নির্বাচন করা="$TotalItems"/> / <!-- This creates a nice percent label for us. ধন্যবাদ, Microsoft! --> <xsl:কল-ফর্মা নাম="percentformat"> <xsl:সঙ্গে PARAM নাম="percent" নির্বাচন করা="$BarPercent"/> </xsl:কল-ফর্মা>) </td> <!-- পরিশেষে, emit a <td> tag for the bar itself.--> <td> <টেবিল cellpadding="0" cellspacing="0" সীমানা="0" প্রস্থ="{round($BarPercent*100)+1}%"> <tr bgcolor="red"> <xsl:পাঠ নিষ্ক্রিয়-আউটপুট-escaping="হ্যাঁ"><![CDATA[&nbsp;]]></xsl:পাঠ> </tr> </টেবিল> </td> </tr> </xsl:টেমপ্লেট> <!-- This is taken directly from some XSL I found in an MS template. --> <xsl:টেমপ্লেট নাম="percentformat"> <xsl:PARAM নাম="percent"/> <xsl:নির্বাচন করা> <xsl:যখন পরীক্ষা="বিন্যাস-সংখ্যা($percent, '#,##0%;-#,##0%')= 'NaN'">0%</xsl:যখন> <xsl:অন্যথায়> <xsl:মান-এর নির্বাচন করা="বিন্যাস-সংখ্যা($percent, '#,##0%;-#,##0%')" /> </xsl:অন্যথায়> </xsl:নির্বাচন করা> </xsl:টেমপ্লেট> </xsl:স্টাইলশীট>

The Results:

The XSL from above generates this graph:

ইমেজ

Drill down to the underlying data by clicking on the status code:

ইমেজ

Concluding Thoughts:

Can This Be Generalized?

I love this graphing concept, but I hate the fact that I have to go in and do so much hand-coding. I’ve given a little thought to whether it can be generalized and I’m optimistic, but I’m also a little fearful that there may be a brick wall somewhere along the path that won’t offer any work-around. If anyone has some good ideas on this, please make a note in the comments or আমাকে ইমেইল.

Vertical Graphs:

This is a horizontal bar graph. It’s certainly possible to create a vertical graph. We just need to change the HTML. I would start the same way: Create an HTML representation of a vertical bar graph and then figure out how to get that via XSL. If anyone is interested in that, I could be persuaded to try it out and work out the kinks. If someone has already done that, please let me know and I’ll gladly link to your blog 🙂

I think that challenge with a vertical graph is that the labels for the graph are more difficult to manage, but certainly not impossible.

Field Name Gotcha’s:

There are at least two things to look out for with your field names.

প্রথম, a field name with a space has to be escaped in the XSL. This will probably be an issue here:

        <xsl:পরিবর্তনশীল নাম="totalProposed" 
নির্বাচন করা="গণনা(/dsQueryResponse / সারি / সারি[স্বাভাবিক-স্থান(@ স্থিতি) = 'প্রস্তাবিত'])" />

If your "Status" column is actually named "Status Code" then you need to reference it as "Status_x0020_Code":

   <xsl:পরিবর্তনশীল নাম="totalProposed" 
নির্বাচন করা="গণনা(/dsQueryResponse / সারি / সারি[স্বাভাবিক-স্থান(@Status_x0020_Code) = 'প্রস্তাবিত'])" />

দ্বিতীয়, and I’m a little fuzzy on this, but you also need to be on the alert for field name changes. If you name your field "Status Code" and then later on, rename it to "AFE Status", the "internal name" does not change. The internal name will still be "Status Code" and must be referenced as "Status_x0020_Code". The "other resources" links may help diagnose and correct this kind of problem.

About that Color:

I picked "red" because it’s pleasing to me at the moment. It would not be a big deal to show different colors so as to provide more than just a visual description of a number, but to also provide a useful KPI. উদাহরণস্বরূপ, if the percentage of "stalled" AFE’s is > 10% then show it red, otherwise show it in black. ব্যবহার <xsl:নির্বাচন করা> to accomplish this.

Other Resources:

রূপান্তর শুভ!

<শেষ />

আমার ব্লগ এর জন্য সাবস্ক্রাইব করুন!

OM কাস্টম তালিকা মাধ্যমে উপস্থাপন করা ডেটা (বা, এখনও অন্য OM জন্ম Displayor [YACC ভালো লেগেছে, কিন্তু বিভিন্ন])

আজ, I spent a handful of hours tracking down the root cause behind the message "The column name that you entered is already in use or reserved. Choose another name."

প্রশ্নের কলাম তৈরি করা যায়নি, অন্য পরিবেশে মোছা এবং পুনরায় নির্মিত, so I knew it wasn’t a reserved name. কিন্তু, আমি কেবল সাইট সংগ্রহে কোনো সাইটে মান SharePoint ইউজার ইন্টারফেসের মাধ্যমে যে কোন জায়গায় কলাম খুঁজে পাইনি.

আমি পোস্ট এখানে দুটিই MSDN ফোরাম এবং দুর্জয় অ্যান্ড্রু উডওয়ার্ড অন্তর্নিহিত অবজেক্ট মডেল তথ্য দিক সম্পর্কে তীক্ষ্ন.

আমি গিয়েছিলাম বন্ধ codeplex কিছু টুলস অন্তর্নিহিত OM তথ্য মধ্যে আমার সম্পর্কে পিয়ার সাহায্য এবং আমার সমস্যা সনাক্ত করতে সাহায্য করবে এটি que.

আমি বিভিন্ন সরঞ্জাম চেষ্টা এবং তারা খুব শান্ত এবং আকর্ষণীয় ছিল কিন্তু শেষে, the UI wasn’t good enough for my purpose. I’m not criticizing them by any means, তারা তাদের UI 'তে তৈরি করতে যাবেন তখন কিন্তু পরিষ্কারভাবে টুল নির্মাতা মন আমার সমস্যা আছে কি না :). Most people seem to be investing a fair amount of time and effort in creating workstation / গাছ দেখেছে প্রদান ক্লায়েন্ট অ্যাপ্লিকেশন, right-click context menus and so forth. These are nice and all, কিন্তু এটি খুবই নমনীয় যে একটি শীর্ষ অফ দ্যা লাইন ব্যবহারকারীর অভিজ্ঞতা নির্মাণ কাজের অনেক.

আমি সত্যিই এই সমস্যার একটি উত্তর প্রয়োজন. এটা আমার ঘটেছে যে আমি একটি কাস্টম তালিকায় সাইট সংগ্রহে সাইট কলাম সমস্ত পেতে পারে, আমি ফিল্টার পারে, আমাকে এই কল্পনানুসারে বিদ্যমান কলাম খুঁজে পেতে সাহায্য করবে যে দেখ বাছাই এবং তৈরি করুন (তা যা, BTW). I went ahead and did that and an hour or two later, আমার সকল সাইট কলাম গোষ্ঠীবদ্ধ করার সঙ্গে একটি কাস্টম তালিকায় লোড করা ছিল, sorting and so forth. I found my answer five minutes later.

আমি সফলভাবে বিশ্বজুড়ে নিতে যদি এবং যখন, I think I will decree that all SharePoint tools providers must seriously consider surfacing their object model data in a custom list. That way, আমি ক্ষমতা আছে আমি চাই কোন উপায়ে অনুসন্ধান (অপ্রতিভ, স্বভাবত, মান SharePoint বৈশিষ্ট্য দ্বারা).